frues-clan/modules/virtualisation.nix
Pedro Rey Anca 81a87d4386
Some checks are pending
Flake check / check (push) Waiting to run
Update `flake.lock` / update_lockfile (push) Waiting to run
Update to 25.11
2025-12-02 13:23:08 +01:00

28 lines
502 B
Nix

{ pkgs, ... }:
{
# Install necessary packages
environment.systemPackages = with pkgs; [
virt-manager
virt-viewer
spice
spice-gtk
spice-protocol
virtio-win
win-spice
adwaita-icon-theme
lxqt.lxqt-openssh-askpass
];
# Manage the virtualisation services
virtualisation = {
libvirtd = {
enable = true;
qemu = {
swtpm.enable = true;
};
};
spiceUSBRedirection.enable = true;
};
services.spice-vdagentd.enable = true;
}