mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
11 lines
240 B
Nix
11 lines
240 B
Nix
{ currentSystemUser, ... }:
|
|
{
|
|
programs.virt-manager.enable = true;
|
|
users.groups.libvirtd.members = ["${currentSystemUser}"];
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
libvirtd.enable = true;
|
|
spiceUSBRedirection.enable = true;
|
|
};
|
|
}
|