dotfiles/hosts/lio/vms.nix
RingOfStorms (Joshua Bell) 22b4c5755d upgrade lio to 25.11
2025-12-02 00:20:26 -06:00

30 lines
535 B
Nix

{ pkgs, ... }:
{
options = { };
config = {
users.users.josh.extraGroups = [ "libvirtd" "kvm" ];
environment.systemPackages = with pkgs; [
virt-manager
virt-viewer
spice
spice-gtk
spice-protocol
virtio-win
win-spice
adwaita-icon-theme
];
virtualisation = {
libvirtd = {
enable = true;
qemu = {
swtpm.enable = true;
};
};
spiceUSBRedirection.enable = true;
};
services.spice-vdagentd.enable = true;
};
}