Server NixOS configs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: new structure for setup

+4 -2
+4 -1
hosts/default.nix
··· 11 11 tethys = { 12 12 deployable = true; 13 13 tags = ["server" "hetzner"]; 14 - modules = [inputs.disko.nixosModules.disko]; 14 + modules = [ 15 + inputs.disko.nixosModules.disko 16 + ./tethys/disks.nix 17 + ]; 15 18 }; 16 19 }; 17 20 };
-1
hosts/tethys/default.nix
··· 2 2 { 3 3 imports = [ 4 4 ./bootloader.nix 5 - ./disks.nix 6 5 ./hardware.nix 7 6 ./networking.nix 8 7 ];