nix/hosts/kameramann/default.nix

13 lines
226 B
Nix

{ ... }: {
imports = [
./hardware.nix
./disko.nix
./nvr.nix
];
networking.hostName = "kameramann";
networking.interfaces.ens18.useDHCP = true;
swapDevices = [{ device = "/swapfile"; size = 4096; }];
}