From 6febed8fb7b57c6f7915aa07ec8dae26337664e3 Mon Sep 17 00:00:00 2001 From: Alex Mickelson Date: Mon, 13 Oct 2025 14:12:21 -0600 Subject: [PATCH] qemu system --- nix/home-server.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/home-server.nix b/nix/home-server.nix index ff6c73e..bf47352 100644 --- a/nix/home-server.nix +++ b/nix/home-server.nix @@ -93,6 +93,11 @@ qemu OVMF tmux + (pkgs.writeShellScriptBin "qemu-system-x86_64-uefi" '' + qemu-system-x86_64 \ + -bios ${pkgs.OVMF.fd}/FV/OVMF.fd \ + "$@" + '') ]; services.openssh.enable = true;