From 4ecaa23cb2438cf38d66f928a81f0b9615fb5496 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sun, 22 Jun 2025 02:18:09 -0400 Subject: [PATCH] compat: update partition UUIDs --- hardware-configuration/fire.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/hardware-configuration/fire.nix b/hardware-configuration/fire.nix index ad5a3b5..7990a20 100644 --- a/hardware-configuration/fire.nix +++ b/hardware-configuration/fire.nix @@ -9,17 +9,20 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/DA81-CC53"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; + }; + fileSystems."/" = { device = "/dev/disk/by-uuid/c926bae1-6832-4ba9-a3d7-f5da11bfc846"; fsType = "ext4"; }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/5008-DA4A"; - fsType = "vfat"; - }; - - swapDevices = [ ]; + swapDevices = + [ { device = "/dev/disk/by-uuid/3a81bb60-49e4-41fc-8716-8db7dd5f698f"; } + ]; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;