11 lines
215 B
Nix
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
|
|
];
|
|
}
|