From ffffb94a6b57bd2b2e686fbc8eb692cce87afe2e Mon Sep 17 00:00:00 2001 From: jay Date: Wed, 9 Jul 2025 08:23:16 -0400 Subject: [PATCH] Fix typo for /home device. --- nodes/hosts/nixy/system/filesystems.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/hosts/nixy/system/filesystems.nix b/nodes/hosts/nixy/system/filesystems.nix index 31b4717..bf26176 100644 --- a/nodes/hosts/nixy/system/filesystems.nix +++ b/nodes/hosts/nixy/system/filesystems.nix @@ -33,7 +33,7 @@ }; fileSystems."/home" = - { device = "/dev/mapper/cryptroot"; + { device = "/dev/mapper/crypthome"; fsType = "btrfs"; options = [ "subvol=home" "compress=zstd" "noatime" ]; neededForBoot = true;