Update config-plasma.nix

This commit is contained in:
Aaron Honeycutt 2022-05-07 22:27:16 +00:00
parent 008cf4e099
commit a7190c7e0d

View file

@ -13,6 +13,18 @@
systemd-boot.enable = true; 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 # Name your host machine
networking.hostName = "NixOS-VM"; networking.hostName = "NixOS-VM";