nix/modules/system/hardware/virt.nix
2024-10-06 16:36:21 +02:00

13 lines
218 B
Nix

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