nixos-config/nix/machines/hopper/default.nix
2025-01-12 15:48:32 +01:00

18 lines
319 B
Nix

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