From 7277a135a24ea48e841c5da258bf0f855c9d6187 Mon Sep 17 00:00:00 2001 From: Alex Mickelson Date: Thu, 13 Feb 2025 22:17:02 -0700 Subject: [PATCH] files --- nix/home-server.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nix/home-server.nix b/nix/home-server.nix index fc9dcf0..f35c10e 100644 --- a/nix/home-server.nix +++ b/nix/home-server.nix @@ -142,15 +142,15 @@ }; }; environment.etc = { - "FV/OVMF_CODE.fd" = { - source = pkgs.OVMF.fd + "/FV/OVMF_CODE.fd"; + "ovmf/edk2-x86_64-secure-code.fd" = { + source = config.virtualisation.libvirtd.qemu.package + "/share/qemu/edk2-x86_64-secure-code.fd"; }; - "FV/OVMF_VARS.fd" = { - source = pkgs.OVMF.fd + "/FV/OVMF_VARS.fd"; + "ovmf/edk2-i386-vars.fd" = { + source = config.virtualisation.libvirtd.qemu.package + "/share/qemu/edk2-i386-vars.fd"; }; }; - + powerManagement.powertop.enable = true; powerManagement.enable = true; powerManagement.cpuFreqGovernor = "powersave";