Files
2023-09-05 04:35:35 +05:30

14 lines
208 B
Nix

{ pkgs, username, ... }:
{
virtualisation = {
libvirtd.enable = true;
};
users.users.${username}.extraGroups = [ "libvirtd" ];
environment.systemPackages = with pkgs; [
virt-manager
];
}