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