From f00dc9488a82172f6cee8a845c1673c0404500c1 Mon Sep 17 00:00:00 2001 From: stitchy Date: Sun, 7 Sep 2025 22:34:58 -0700 Subject: [PATCH 1/2] fix(malachite): issue has been resolved with kernel versions 6.13+ --- hosts/malachite/hardware-configuration.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/hosts/malachite/hardware-configuration.nix b/hosts/malachite/hardware-configuration.nix index 0c23c7f..eb4b025 100644 --- a/hosts/malachite/hardware-configuration.nix +++ b/hosts/malachite/hardware-configuration.nix @@ -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" From b32dcdb826d809710bb542906407add8ab4262d2 Mon Sep 17 00:00:00 2001 From: stitchy Date: Sun, 7 Sep 2025 22:35:42 -0700 Subject: [PATCH 2/2] feat(malachite): additional ssd --- hosts/malachite/hardware-configuration.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/hosts/malachite/hardware-configuration.nix b/hosts/malachite/hardware-configuration.nix index eb4b025..49421ed 100644 --- a/hosts/malachite/hardware-configuration.nix +++ b/hosts/malachite/hardware-configuration.nix @@ -36,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"; @@ -65,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" ]; }; }; @@ -73,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 = [ ];