Update config-plasma.nix

This commit is contained in:
Aaron Honeycutt 2022-05-07 21:02:21 +00:00
parent a492cb0234
commit 39d79e0510

View file

@ -13,6 +13,19 @@
systemd-boot.enable = true; systemd-boot.enable = true;
}; };
{
fileSystems."/" =
{ device = "/dev/disk/by-label/root" ;
fsType = "btrfs";
options = [ "subvol=nixos" "compress=zstd" "autodefrag" "noatime" ];
};
boot.initrd.luks.devices."crypt-root" = {
device = "/dev/disk/by-label/root" ;
preLVM = true;
};
}
# Name your host machine # Name your host machine
networking.hostName = "NixOS-VM"; networking.hostName = "NixOS-VM";