From 541cc8baac3007435bebd61fbba9deda3e59aead Mon Sep 17 00:00:00 2001 From: min Date: Tue, 31 Dec 2024 01:15:18 -0500 Subject: [PATCH] a driver issue maybe --- hosts/mpl/disk-config.nix | 1 - hosts/mpl/hardware.nix | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/mpl/disk-config.nix b/hosts/mpl/disk-config.nix index 0fb11d0..345520f 100644 --- a/hosts/mpl/disk-config.nix +++ b/hosts/mpl/disk-config.nix @@ -30,7 +30,6 @@ allowDiscards = true; bypassWorkqueues = true; }; - initrdUnlock = true; passwordFile = "/tmp/luks-pw"; content = { type = "btrfs"; diff --git a/hosts/mpl/hardware.nix b/hosts/mpl/hardware.nix index 5510ba4..c425ebe 100644 --- a/hosts/mpl/hardware.nix +++ b/hosts/mpl/hardware.nix @@ -6,6 +6,7 @@ }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") + (modulesPath + "/profiles/qemu-guest.nix") ]; boot = { @@ -15,6 +16,7 @@ }; kernelModules = ["kvm-amd"]; extraModulePackages = []; + supportedFilesystems = ["ext4" "btrfs"]; }; hardware.enableAllFirmware = true;