diff --git a/hosts/voyager/default.nix b/hosts/voyager/default.nix index 6d51508..e9d1316 100644 --- a/hosts/voyager/default.nix +++ b/hosts/voyager/default.nix @@ -75,7 +75,7 @@ # Configure automatic root subvolume wiping on boot from initrd autoWipeBtrfs = { enable = true; - devices."/dev/disk/by-label/NIXOS-FS".subvolumes = [ "root" "home" ]; + devices."/dev/disk/by-label/NIXOS-FS".subvolumes = [ "root" ]; }; }; }; diff --git a/hosts/voyager/hardware-configuration.nix b/hosts/voyager/hardware-configuration.nix index 08dbecf..9a3901a 100644 --- a/hosts/voyager/hardware-configuration.nix +++ b/hosts/voyager/hardware-configuration.nix @@ -34,12 +34,6 @@ neededForBoot = true; }; - fileSystems."/home" = - { device = "/dev/disk/by-label/NIXOS-FS"; - fsType = "btrfs"; - options = [ "subvol=home" "noatime" "compress=zstd:3" ]; - }; - fileSystems."/data" = { device = "/dev/disk/by-label/NIXOS-FS"; fsType = "btrfs";