main
nix 29 lines 458 Bytes
Raw
1 {
2 imports = [
3 ../common.nix
4 ../hydra.nix
5 ../hydra-proxy.nix
6 ../hydra-queue-runner.nix
7 ./boot.nix
8 ./network.nix
9 ./postgresql.nix
10 ./zrepl.nix
11 ];
12
13 disko.devices = import ./disko.nix;
14
15 networking = {
16 hostName = "mimas";
17 domain = "nixos.org";
18 hostId = "aba92093";
19 };
20
21 zramSwap = {
22 enable = true;
23 memoryPercent = 50;
24 };
25
26 nixpkgs.hostPlatform = "x86_64-linux";
27
28 system.stateVersion = "24.11";
29 }