nixos/modules/system/apps/qemu.nix
Florian RICHER 31e3bbe9e9
All checks were successful
check / check (push) Successful in 33s
qemu: Add secureboot + tmp2 support
2025-02-01 14:13:45 +01:00

37 lines
806 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.system.apps.qemu;
in
{
options.modules.system.apps.qemu = {
enable = mkEnableOption ''
Enable qemu with my custom configurations
'';
};
config = mkIf cfg.enable {
programs.virt-manager.enable = true;
users.groups.libvirtd.members = ["florian"];
users.users.florian.extraGroups = [ "libvirtd" ];
virtualisation.libvirtd = {
enable = true;
qemu = {
package = pkgs.qemu_kvm;
runAsRoot = true;
swtpm.enable = true;
ovmf = {
enable = true;
packages = [(pkgs.OVMF.override {
secureBoot = true;
tpmSupport = true;
}).fd];
};
};
};
virtualisation.spiceUSBRedirection.enable = true;
};
}