universe/host/services/podman.nix

13 lines
183 B
Nix
Raw Normal View History

2025-03-14 16:40:36 +00:00
{
lib,
config,
...
}: {
config = lib.mkIf config.universe.services.podman.enable {
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
};
}