From 2bdb4a58e9b320372442f24a7fbbd141d85e7673 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Tue, 17 Feb 2026 23:48:47 +0300 Subject: [PATCH] Repath mounts --- host/Impreza/hardware-configuration.nix | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/host/Impreza/hardware-configuration.nix b/host/Impreza/hardware-configuration.nix index c6c6b73..c864cf6 100644 --- a/host/Impreza/hardware-configuration.nix +++ b/host/Impreza/hardware-configuration.nix @@ -13,22 +13,22 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "/dev/disk/by-uuid/31247de4-e9c0-4690-8bce-8380377b6872"; - fsType = "ext4"; - }; + fileSystems."/" = { + device = "/dev/disk/by-label/NixOS"; + fsType = "ext4"; + }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/328A-299C"; - fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; - }; + fileSystems."/boot" = { + device = "/dev/disk/by-label/EFI"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" "nofail" ]; + }; - fileSystems."/mnt/Windows" = - { device = "/dev/disk/by-uuid/84E48B00E48AF428"; - fsType = "ntfs"; - options = [ "umask=0022" "gid=100" "uid=1000" "nofail" ]; - }; + fileSystems."/mnt/Windows" = { + device = "/dev/disk/by-label/Windows"; + fsType = "ntfs"; + options = [ "umask=0022" "gid=100" "uid=1000" "nofail" ]; + }; swapDevices = [ ];