From 92c62291f23484baad56ccbb87ca68955fb578bd Mon Sep 17 00:00:00 2001 From: jay Date: Mon, 7 Jul 2025 12:17:43 +0000 Subject: [PATCH] Correct /home subvolume name. --- nodes/hosts/lappy/system/filesystems.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/hosts/lappy/system/filesystems.nix b/nodes/hosts/lappy/system/filesystems.nix index 2677dca..576ecdb 100644 --- a/nodes/hosts/lappy/system/filesystems.nix +++ b/nodes/hosts/lappy/system/filesystems.nix @@ -9,7 +9,7 @@ fileSystems."/home" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; - options = [ "subvol=nix" "compress=zstd" "noatime" ]; + options = [ "subvol=home" "compress=zstd" "noatime" ]; }; fileSystems."/nix" =