13 lines
226 B
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; }];
|
|
}
|