Compare commits
2 commits
585e9fc48d
...
b32dcdb826
Author | SHA1 | Date | |
---|---|---|---|
b32dcdb826 | |||
f00dc9488a |
1 changed files with 8 additions and 5 deletions
|
@ -10,9 +10,6 @@
|
|||
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"
|
||||
|
@ -39,7 +36,7 @@
|
|||
"/persist" = {
|
||||
device = "/dev/disk/by-uuid/8e30bb30-eacf-4d7d-bcec-c2b39982de13";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@persist" "compress=zstd" ];
|
||||
options = [ "subvol=@persist" ];
|
||||
};
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/CB12-5062";
|
||||
|
@ -68,7 +65,12 @@
|
|||
"/home/stitchynyan/VirtualMachines" = {
|
||||
device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040";
|
||||
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 = ''
|
||||
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 = [ ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue