mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
24 lines
529 B
Nix
24 lines
529 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {
|
|
alyraffauf.apps.podman.enable =
|
|
lib.mkEnableOption "Enables Podman for OCI container support.";
|
|
};
|
|
|
|
config = lib.mkIf config.alyraffauf.apps.podman.enable {
|
|
virtualisation = {
|
|
oci-containers = {backend = "podman";};
|
|
podman = {
|
|
# Required for containers under podman-compose to be able to talk to each other.
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|