nixos: sort machines by hosts

This commit is contained in:
Guanran Wang 2023-12-17 18:16:39 +08:00
parent bc838d609d
commit 50f8612308
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
2 changed files with 2 additions and 6 deletions

View file

@ -182,7 +182,7 @@
./users/guanranwang/nixos/profiles/opt-in/torrenting
# Hardware
./nixos/hardware/lenovo/legion/81fw
./nixos/hosts/Aristotle
./nixos/profiles/opt-in/lanzaboote.nix
./nixos/profiles/opt-in/impermanence.nix
./nixos/profiles/opt-in/disko.nix

View file

@ -1,5 +1,4 @@
{
lib,
modulesPath,
inputs,
...
@ -16,9 +15,6 @@
};
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
nixpkgs.hostPlatform = "x86_64-linux";
}