diff --git a/hosts/tatara/hardware-configuration.nix b/hosts/tatara/hardware-configuration.nix index 5364690..84462df 100644 --- a/hosts/tatara/hardware-configuration.nix +++ b/hosts/tatara/hardware-configuration.nix @@ -8,18 +8,18 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/1cc325bd-91a6-4c69-9593-e2cb27363c93"; + { device = "/dev/disk/by-uuid/057be728-a74c-4a73-b102-247aba6155a7"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/EF24-B12A"; + { device = "/dev/disk/by-uuid/7B70-EE8A"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; @@ -31,7 +31,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.enp5s0.useDHCP = lib.mkDefault true; + # networking.interfaces.enp4s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;