universe/host/services/podman.nix
2025-03-14 16:40:36 +00:00

13 lines
183 B
Nix

{
lib,
config,
...
}: {
config = lib.mkIf config.universe.services.podman.enable {
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
};
}