main
nix 19 lines 286 Bytes
Raw
1 {
2 imports = [
3 ../common.nix
4 ./boot.nix
5 ./network.nix
6 ];
7
8 disko.devices = import ./disko.nix;
9
10 networking = {
11 hostId = "e1ce6466";
12 hostName = "titan";
13 domain = "nixos.org";
14 };
15
16 services.zfs.autoScrub.enable = true;
17
18 system.stateVersion = "25.11";
19 }