blob: 891c5dca6dd77cb5bcf8cdb1068ac113a6edceb0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{pkgs, ...}: {
imports = [
./networking.nix # network configuration that just works
./hardware.nix
../../system
];
boot.cleanTmpDir = true;
zramSwap.enable = true;
networking.hostName = "server1";
networking.domain = "vhack.eu";
system.fileSystemLayouts.mainDisk = "/dev/disk/by-uuid/7d960eb9-9334-4aef-9f7c-9a908a91a6db";
system.stateVersion = "22.11";
}
# vim: ts=2
|