17 lines
298 B
Nix
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";
|
|
}
|