22 lines
432 B
Nix
22 lines
432 B
Nix
{inputs, ...}: {
|
|
imports = with inputs.hardware.nixosModules; [
|
|
common-cpu-intel
|
|
|
|
inputs.vpn-confinement.nixosModules.default
|
|
inputs.authentik-nix.nixosModules.default
|
|
|
|
./hardware.nix
|
|
./newlab.nix
|
|
# ./brawlstats.nix
|
|
# ./lab.nix
|
|
# ./hardening.nix
|
|
];
|
|
|
|
networking.hostName = "hopper";
|
|
|
|
swapDevices = [];
|
|
|
|
networking.interfaces.eno1.wakeOnLan.enable = true;
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|