nixos-config/hosts/hopper/default.nix
2024-06-26 20:49:16 +02:00

17 lines
298 B
Nix

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