Compare commits

..

2 commits

View file

@ -10,9 +10,6 @@
boot.kernelModules = [ "kvm-intel" "vfio-pci" ]; boot.kernelModules = [ "kvm-intel" "vfio-pci" ];
boot.extraModulePackages = lib.attrVals [ "rtl8812au" ] config.boot.kernelPackages; 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 = [ boot.kernelParams = [
"loglevel=3" "loglevel=3"
@ -39,7 +36,7 @@
"/persist" = { "/persist" = {
device = "/dev/disk/by-uuid/8e30bb30-eacf-4d7d-bcec-c2b39982de13"; device = "/dev/disk/by-uuid/8e30bb30-eacf-4d7d-bcec-c2b39982de13";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@persist" "compress=zstd" ]; options = [ "subvol=@persist" ];
}; };
"/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/CB12-5062"; device = "/dev/disk/by-uuid/CB12-5062";
@ -68,7 +65,12 @@
"/home/stitchynyan/VirtualMachines" = { "/home/stitchynyan/VirtualMachines" = {
device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040"; device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=virtualmachines/stitchvms" "compress=zstd" "x-systemd.automount" ]; 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" ];
}; };
}; };
@ -76,6 +78,7 @@
environment.etc."crypttab".text = '' environment.etc."crypttab".text = ''
data /dev/disk/by-uuid/15510fe2-5b98-4148-8710-deb8f5bd68e6 /persist/secrets/drive.key 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 = [ ]; swapDevices = [ ];