1
0
Fork 0

hosts/krypton: Remove archroot mount point

This commit is contained in:
clerie 2024-02-13 11:12:11 +01:00
parent 2fe4da7c4a
commit 0cf25afdc7
1 changed files with 1 additions and 7 deletions

View File

@ -8,7 +8,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "rtsx_pci_sdmmc" ];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
@ -28,11 +28,6 @@
fsType = "vfat";
};
fileSystems."/archroot" =
{ device = "/dev/disk/by-uuid/07e2ce46-4734-47ff-b7f2-35da4a5511ab";
fsType = "ext4";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/9b325780-17b2-4c0f-a3df-58f9963e1db0"; }
];
@ -47,6 +42,5 @@
# networking.interfaces.wwp0s20f0u3.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}