From 461c48631a798ddc33a12f9fe99b0650fc241076 Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Thu, 9 Mar 2023 19:33:53 -0800 Subject: [PATCH] switched disks --- hosts/desktop/hardware-configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/desktop/hardware-configuration.nix b/hosts/desktop/hardware-configuration.nix index b60bfa1..32e3b89 100644 --- a/hosts/desktop/hardware-configuration.nix +++ b/hosts/desktop/hardware-configuration.nix @@ -8,23 +8,23 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/0ca5ef2d-6a5c-4d09-946e-9c0e399ab710"; + { device = "/dev/disk/by-uuid/9d834394-966e-4a2c-8bf2-2d47f12c2d74"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/7040-71B5"; + { device = "/dev/disk/by-uuid/D9D7-DFAB"; fsType = "vfat"; }; swapDevices = - [ { device = "/dev/disk/by-uuid/6a90769d-765e-4780-b855-d92b76d7b001"; } + [ { device = "/dev/disk/by-uuid/612ae3f6-be6b-466d-a46f-1fca1278c610"; } ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking @@ -32,7 +32,7 @@ # still possible to use this option, but it's recommended to use it in conjunction # with explicit per-interface declarations with `networking.interfaces..useDHCP`. networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp7s0.useDHCP = lib.mkDefault true; + # networking.interfaces.enp8s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;