2024-04-07 22:16:33 -04:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
2024-03-28 16:13:46 -04:00
|
|
|
options = {
|
2024-03-29 21:51:10 -04:00
|
|
|
apps.podman.enable =
|
|
|
|
lib.mkEnableOption "Enables Podman for OCI container support.";
|
2024-03-28 16:13:46 -04:00
|
|
|
};
|
|
|
|
|
2024-03-29 21:51:10 -04:00
|
|
|
config = lib.mkIf config.apps.podman.enable {
|
2024-03-28 16:13:46 -04:00
|
|
|
virtualisation = {
|
2024-04-07 22:16:33 -04:00
|
|
|
oci-containers = {backend = "podman";};
|
2024-03-28 16:13:46 -04:00
|
|
|
podman = {
|
|
|
|
# Required for containers under podman-compose to be able to talk to each other.
|
|
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
|
|
enable = true;
|
2024-04-08 22:19:16 -04:00
|
|
|
autoPrune.enable = true;
|
2024-03-28 16:13:46 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-03-28 16:40:23 -04:00
|
|
|
}
|