nixos-config/hosts/hopper/default.nix
2024-05-10 19:39:17 +02:00

15 lines
243 B
Nix

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