From a7190c7e0d5db8c15f2c0689557a3151f9d5e66d Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 7 May 2022 22:27:16 +0000 Subject: [PATCH] Update config-plasma.nix --- config-plasma.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/config-plasma.nix b/config-plasma.nix index 8a4ba3f..9fd1a1c 100644 --- a/config-plasma.nix +++ b/config-plasma.nix @@ -13,6 +13,18 @@ systemd-boot.enable = true; }; + fileSystems."/" = + { device = "/dev/lvm/root"; + fsType = "btrfs"; + options = [ "subvol=root" "compress=zstd" "noatime" ]; + }; + + fileSystems."/home" = + { device = "/dev/lvm/root"; + fsType = "btrfs"; + options = [ "subvol=home" "compress=zstd" "noatime" ]; + }; + # Name your host machine networking.hostName = "NixOS-VM";