Add virtualisation module

This commit is contained in:
JuliusFreudenberger 2025-02-25 22:09:38 +02:00
parent 1e5c09b1e8
commit 49392c53a6
3 changed files with 16 additions and 1 deletions

View file

@ -0,0 +1,14 @@
{
pkgs,
lib,
...
}: {
environment.systemPackages = with pkgs; [
virt-manager
];
virtualisation = {
libvirtd.enable = true;
spiceUSBRedirection.enable = true;
};
}