move virt to module

This commit is contained in:
smayzy
2025-06-28 14:46:48 +00:00
parent 9f4d80d15d
commit 4c54596ffa
2 changed files with 25 additions and 15 deletions
+10
View File
@@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
programs.virt-manager.enable = true;
users.groups.libvirtd.members = ["smayzy"];
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [
qemu
];
}