nix-config/hosts/common/optional/virt.nix
Lander Van den Bulcke aa8f57b9c2
chore: fix deprecation warnings
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-01-30 11:17:56 +01:00

30 lines
546 B
Nix

{ config, pkgs, ... }:
{
programs.dconf.enable = true;
users.users.lander.extraGroups = [ "libvirtd" ];
environment.systemPackages = with pkgs; [
virt-manager
virt-viewer
spice
spice-gtk
spice-protocol
win-virtio
win-spice
];
virtualisation = {
libvirtd = {
enable = true;
qemu = {
swtpm.enable = true;
ovmf.enable = true;
ovmf.packages = [ pkgs.OVMFFull.fd ];
};
};
spiceUSBRedirection.enable = true;
};
services.spice-vdagentd.enable = true;
}