mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
12 lines
347 B
Nix
12 lines
347 B
Nix
{ currentSystemUser, ... }:
|
|
{
|
|
# virtualisation.podman.enable = true;
|
|
# virtualisation.podman.dockerCompat = true;
|
|
virtualisation.docker.enable = true;
|
|
#
|
|
programs.virt-manager.enable = true;
|
|
users.groups.libvirtd.members = ["${currentSystemUser}"];
|
|
virtualisation.libvirtd.enable = true;
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
|
}
|