diff options
Diffstat (limited to 'hosts/server1/configuration.nix')
-rw-r--r-- | hosts/server1/configuration.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hosts/server1/configuration.nix b/hosts/server1/configuration.nix new file mode 100644 index 0000000..729ef0f --- /dev/null +++ b/hosts/server1/configuration.nix @@ -0,0 +1,20 @@ +{pkgs, ...}: { + imports = [ + ./networking.nix # network configuration that just works + + ../../system + + ../../services + ]; + + boot.cleanTmpDir = true; + zramSwap.enable = true; + networking.hostName = "server1"; + networking.domain = "vhack.eu"; + + system.fileSystemLayouts.mainDisk = "/dev/vda3"; + + system.stateVersion = "22.11"; +} +# vim: ts=2 + |