Compare commits

..

No commits in common. "b32dcdb826d809710bb542906407add8ab4262d2" and "585e9fc48d12b3284e50ab736fa32553735092a3" have entirely different histories.

View file

@ -10,6 +10,9 @@
boot.kernelModules = [ "kvm-intel" "vfio-pci" ];
boot.extraModulePackages = lib.attrVals [ "rtl8812au" ] config.boot.kernelPackages;
# https://gitlab.com/qemu-project/qemu/-/issues/2574
# Might bisect or something if I get around to it
boot.kernelPackages = pkgs.linuxPackages_6_6;
boot.kernelParams = [
"loglevel=3"
@ -36,7 +39,7 @@
"/persist" = {
device = "/dev/disk/by-uuid/8e30bb30-eacf-4d7d-bcec-c2b39982de13";
fsType = "btrfs";
options = [ "subvol=@persist" ];
options = [ "subvol=@persist" "compress=zstd" ];
};
"/boot" = {
device = "/dev/disk/by-uuid/CB12-5062";
@ -65,12 +68,7 @@
"/home/stitchynyan/VirtualMachines" = {
device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040";
fsType = "btrfs";
options = [ "subvol=virtualmachines/stitchvms" "x-systemd.automount" ];
};
"/persist/libvirtd/ssd-images" = {
device = "/dev/disk/by-uuid/2acfecd4-0a2c-4eb0-b402-3899a654925e";
fsType = "btrfs";
options = [ "subvol=@virtualmachines" "noatime" ];
options = [ "subvol=virtualmachines/stitchvms" "compress=zstd" "x-systemd.automount" ];
};
};
@ -78,7 +76,6 @@
environment.etc."crypttab".text = ''
data /dev/disk/by-uuid/15510fe2-5b98-4148-8710-deb8f5bd68e6 /persist/secrets/drive.key
ssd /dev/disk/by-uuid/ce3b62f3-079a-4dc4-bd1d-2494668a96c2 /persist/secrets/ssd.key
'';
swapDevices = [ ];