This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-04-25 16:38:06 +02:00
parent 135eea9984
commit 56a5ff0204
6 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{ config, pkgs, user, ... }:
{
environment.systemPackages = with pkgs; [
virtiofsd
];
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
users.users."${user}".extraGroups = [ "libvirtd" ];
}