Edit virtualisation.nix Add podman as an option

This commit is contained in:
dwilliam62 2025-03-06 01:00:16 +00:00 committed by Tyler Kelley
parent f264948c8b
commit ae49f7b2ca

View File

@ -1,6 +1,8 @@
{ ... }:
{
# Only enable either docker or podman -- Not both
virtualisation.libvirtd.enable = true;
virtualisation.docker.enable = true;
virtualisation.podman.enable = false;
}