nix-config/modules/nix/virt.nix
2025-06-28 14:46:48 +00:00

11 lines
215 B
Nix

{ config, lib, pkgs, ... }:
{
programs.virt-manager.enable = true;
users.groups.libvirtd.members = ["smayzy"];
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [
qemu
];
}