From a0f250055922f214bcc3531698f94ca6e602df76 Mon Sep 17 00:00:00 2001 From: Matt Layher Date: Mon, 27 Apr 2020 20:55:42 -0400 Subject: [PATCH] nixos/routnerr-2: new hardware configuration --- nixos/routnerr-2/hardware-configuration.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/routnerr-2/hardware-configuration.nix b/nixos/routnerr-2/hardware-configuration.nix index d1a0c19..4055eaf 100644 --- a/nixos/routnerr-2/hardware-configuration.nix +++ b/nixos/routnerr-2/hardware-configuration.nix @@ -7,17 +7,18 @@ imports = [ ]; boot.initrd.availableKernelModules = - [ "xhci_pci" "ahci" "ehci_pci" "usb_storage" "sd_mod" "sdhci_pci" ]; + [ "xhci_pci" "ahci" "ehci_pci" "sd_mod" "sdhci_pci" ]; + boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { - device = "/dev/disk/by-uuid/aac735bb-816e-4cfe-be0b-175d120b3351"; + device = "/dev/disk/by-uuid/10be6bfd-9f03-4ce7-88b2-5d00691f728c"; fsType = "ext4"; }; swapDevices = - [{ device = "/dev/disk/by-uuid/5db69880-f5ed-4255-9884-33e9e416039b"; }]; + [{ device = "/dev/disk/by-uuid/56b049fa-6f09-4bc7-97e3-0c790cfa354a"; }]; nix.maxJobs = lib.mkDefault 4; }