nixcfg/systems/x86_64-linux/x1/ipu.nix
Harald Hoyer 91a3e0c400 feat(x86_64-linux): add IPU6 platform configuration
Introduce a new module, ipu.nix, enabling IPU6 platform support. This change aids in configuring specific hardware settings and includes the setup for future kernel package adjustments. The IPU6 module is prepared for integration but is currently commented out in the imports for further testing.
2024-11-28 12:08:24 +01:00

17 lines
188 B
Nix

{
config,
lib,
pkgs,
modulesPath,
...
}:
{
#boot.kernelPackages = lib.mkForce pkgs.linuxPackages_6_11;
hardware.ipu6 = {
platform = "ipu6ep";
enable = true;
};
}