nixos-config/hosts/hopper/default.nix
2024-03-13 23:02:22 +01:00

14 lines
222 B
Nix

{inputs, ...}: {
imports = with inputs.hardware.nixosModules; [
common-cpu-intel
common-pc-hdd
./hardware.nix
];
networking.hostName = "hopper";
swapDevices = [];
system.stateVersion = "23.11";
}