Personal-use NixOS configuration

Re-organize host import order

+9 -8
+4 -3
hosts/decryption/default.nix
··· 7 7 8 8 { 9 9 imports = [ 10 + nixos-hardware.nixosModules.common-pc-ssd 10 11 ./hardware-configuration.nix 11 12 ./disk.nix 12 13 (flakeRoot + /hardware/laptop.nix) # TODO: Automatically add this in mkSystem 13 14 (flakeRoot + /hardware/cpu/amd.nix) 14 15 (flakeRoot + /hardware/gpu/nvidia.nix) 15 16 16 - ./users 17 - 18 17 (flakeRoot + /modules/common) 19 - 20 18 (flakeRoot + /modules/common/boot/systemd-boot.nix) 21 19 (flakeRoot + /modules/common/system/audio.nix) 20 + 22 21 (flakeRoot + /modules/desktop/environments/gnome.nix) 22 + 23 + ./users 23 24 ]; 24 25 25 26 boot.kernelPackages = pkgs.linuxPackages_latest;
+5 -5
hosts/encryption/default.nix
··· 7 7 8 8 { 9 9 imports = [ 10 + nixos-hardware.nixosModules.msi-b350-tomahawk 11 + nixos-hardware.nixosModules.common-pc-ssd 10 12 ./hardware-configuration.nix 11 - nixos-hardware.nixosModules.msi-b350-tomahawk 12 13 (flakeRoot + /hardware/cpu/amd.nix) 13 14 (flakeRoot + /hardware/gpu/amd.nix) 14 - 15 - ./users 16 15 17 16 (flakeRoot + /modules/common) 18 - 19 17 (flakeRoot + /modules/common/boot/secureboot.nix) 20 18 (flakeRoot + /modules/common/system/audio.nix) 19 + (flakeRoot + /modules/common/virtualization.nix) 20 + 21 21 (flakeRoot + /modules/desktop/environments/gnome.nix) 22 22 23 - (flakeRoot + /modules/common/virtualization.nix) 23 + ./users 24 24 ]; 25 25 26 26 boot.kernelPackages = pkgs.linuxPackages_zen;