From affd57d3cce818600fbdb91c82d53ef867b7858f Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Wed, 19 Jun 2024 18:11:37 +0200 Subject: [PATCH] Remove home subvolume from voyager --- hosts/voyager/default.nix | 2 +- hosts/voyager/hardware-configuration.nix | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) 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";