From 5f4616fa871eff04030d465f038b698774e06631 Mon Sep 17 00:00:00 2001 From: Alex Mickelson Date: Thu, 13 Feb 2025 22:00:03 -0700 Subject: [PATCH] ovmf files --- nix/home-server.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nix/home-server.nix b/nix/home-server.nix index e2bc64d..fc9dcf0 100644 --- a/nix/home-server.nix +++ b/nix/home-server.nix @@ -141,6 +141,15 @@ }; }; }; + environment.etc = { + "FV/OVMF_CODE.fd" = { + source = pkgs.OVMF.fd + "/FV/OVMF_CODE.fd"; + }; + + "FV/OVMF_VARS.fd" = { + source = pkgs.OVMF.fd + "/FV/OVMF_VARS.fd"; + }; + }; powerManagement.powertop.enable = true; powerManagement.enable = true;