A few tweaks to try TPM improvement

This commit is contained in:
Greg Hellings
2024-12-10 09:57:19 -06:00
parent 8335f1831b
commit be2ea6aab3
3 changed files with 62 additions and 9 deletions
+11 -4
View File
@@ -1,10 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
(mumble.override { pulseSupport = true; })
#logseq
];
greg = {
development = true;
gui = true;
@@ -13,5 +9,16 @@
vscodium = true;
};
home = {
file.".config/libvirt/qemu.conf".text = ''
nvram = [ "/run/libvirt/nix-ovmf/OVMF_CODE.fd:/run/libvirt/nix-ovmf/OVMF_VARS.fd" ]
'';
packages = with pkgs; [
(mumble.override { pulseSupport = true; })
#logseq
];
};
programs.xonsh.sessionVariables.EFI_DIR = "${pkgs.OVMF.fd}/FV/";
}