summary refs log tree commit diff stats
path: root/hosts/server1/configuration.nix
blob: ad3d8a39a50058454c37c31ff38f0095587c0b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{pkgs, ...}: {
  imports = [
    ./networking.nix # network configuration that just works

    ../../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