refactor(x1): remove unused IPU6 module

- Deleted `ipu.nix` and its reference in `default.nix` under `x1` systems.
- Simplifies configuration by removing unused and commented-out code.
This commit is contained in:
Harald Hoyer 2025-09-11 14:35:38 +02:00
parent dc3a536709
commit 15e61b339c
2 changed files with 0 additions and 17 deletions

View file

@ -9,7 +9,6 @@ with lib.metacfg;
{
imports = [
./hardware-configuration.nix
./ipu.nix
];
services.cratedocs-mcp.enable = true;

View file

@ -1,16 +0,0 @@
{
config,
lib,
pkgs,
modulesPath,
...
}:
{
#boot.kernelPackages = lib.mkForce pkgs.linuxPackages_6_11;
hardware.ipu6 = {
platform = "ipu6ep";
enable = true;
};
}