diff options
| author | Kleidi Bujari <mail@4kb.net> | 2026-06-14 20:23:11 -0700 |
|---|---|---|
| committer | Kleidi Bujari <mail@4kb.net> | 2026-06-14 20:23:11 -0700 |
| commit | a1fe17ea8208d8a75b26b6f512f94d23078f82e5 (patch) | |
| tree | 2ed8e124a97ec4ec4265f89a40f8de9944d95e3c /machines/iridium.nix | |
| parent | 62ac247bbb1e6c7fe6b68402986713d432613f70 (diff) | |
| download | depot-a1fe17ea8208d8a75b26b6f512f94d23078f82e5.tar.gz depot-a1fe17ea8208d8a75b26b6f512f94d23078f82e5.tar.bz2 depot-a1fe17ea8208d8a75b26b6f512f94d23078f82e5.zip | |
inline some intel code from nixos-hardware and remove the dep
Diffstat (limited to 'machines/iridium.nix')
| -rw-r--r-- | machines/iridium.nix | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/machines/iridium.nix b/machines/iridium.nix index 5f30c81..ef3d55b 100644 --- a/machines/iridium.nix +++ b/machines/iridium.nix @@ -1,18 +1,16 @@ -{ inputs, flake, ... }: -let - inherit (inputs.nixos-hardware.nixosModules) - common-cpu-intel - common-gpu-intel - ; -in +{ + flake, + pkgs, + config, + ... +}: { nixpkgs.hostPlatform.system = "x86_64-linux"; system.stateVersion = "25.05"; networking.hostName = "iridium"; imports = [ - common-cpu-intel - common-gpu-intel + flake.outputs.nixosModules.intel flake.outputs.nixosModules.network ]; |
