From 954407bfa0506e60c496f4ca4f48885e399bb87a Mon Sep 17 00:00:00 2001 From: kenji Date: Tue, 22 Jul 2025 20:03:15 -0500 Subject: [PATCH] modified hardware --- hosts/hakase/hardware-configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/hakase/hardware-configuration.nix b/hosts/hakase/hardware-configuration.nix index 0d9785f..715ef9f 100644 --- a/hosts/hakase/hardware-configuration.nix +++ b/hosts/hakase/hardware-configuration.nix @@ -8,19 +8,19 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/532ac73e-1370-4e4d-9d5a-15033de0b96d"; + { device = "/dev/disk/by-uuid/9f701bae-3392-4927-b27d-a905dd67edab"; fsType = "btrfs"; options = [ "subvol=@" ]; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/1368-D3F3"; + { device = "/dev/disk/by-uuid/894C-F998"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; };