libvirt and comma

This commit is contained in:
Glen Goodwin 2023-10-01 13:10:41 -04:00
parent 58c6004ef6
commit 47ae69d5ca
9 changed files with 39 additions and 12 deletions

View file

@ -0,0 +1,9 @@
{ config, pkgs, user, ... }:
{
boot.kernelModules = [ "kvm-amd" ];
environment.systemPackages = with pkgs; [ virt-manager ];
virtualisation.libvirtd.enable = true;
users.extraGroups.libvirtd.members = [ "${user}" ];
}