From 2052878f86001e5dc1c10b7038a6ddfb0b2ace37 Mon Sep 17 00:00:00 2001 From: Tyler Date: Sat, 26 Apr 2025 20:53:15 -0400 Subject: [PATCH 1/2] Update hardware-configuration.nix --- dot_config/flake/machines/mal/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_config/flake/machines/mal/hardware-configuration.nix b/dot_config/flake/machines/mal/hardware-configuration.nix index dbbaffd..363707b 100644 --- a/dot_config/flake/machines/mal/hardware-configuration.nix +++ b/dot_config/flake/machines/mal/hardware-configuration.nix @@ -18,12 +18,12 @@ boot.extraModulePackages = []; fileSystems."/" = { - device = "/dev/disk/by-uuid/b44df0dd-174f-47b0-af88-fd66c6e7deb5"; + device = "/dev/disk/by-label/NIXROOT"; fsType = "ext4"; }; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/5564-A778"; + device = "/dev/disk/by-label/NIXBOOT"; fsType = "vfat"; options = ["fmask=0022" "dmask=0022"]; }; From 89e47bc984cb0d15a1cfd8d0c4f616ad25514628 Mon Sep 17 00:00:00 2001 From: Tyler Date: Sat, 26 Apr 2025 20:54:18 -0400 Subject: [PATCH 2/2] Update hardware-configuration.nix --- dot_config/flake/machines/mal/hardware-configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dot_config/flake/machines/mal/hardware-configuration.nix b/dot_config/flake/machines/mal/hardware-configuration.nix index 363707b..d818b4d 100644 --- a/dot_config/flake/machines/mal/hardware-configuration.nix +++ b/dot_config/flake/machines/mal/hardware-configuration.nix @@ -28,17 +28,17 @@ options = ["fmask=0022" "dmask=0022"]; }; - fileSystems."/mnt/user" = { - device = "array"; + fileSystems."/mnt/store" = { + device = "nix-store"; fsType = "9p"; }; fileSystems."/nix/store" = { depends = [ - "/mnt/user" + "/mnt/store" ]; - device = "/mnt/user/nix-store"; + device = "/mnt/store"; fsType = "none"; options = [ "bind"