nix-da/options/container/default.nix
2024-12-31 01:00:45 +01:00

28 lines
617 B
Nix

{ config, lib, ... }:
let
cfg = config.modules.container;
inherit (lib) mkIf mkEnableOption mkForce;
in
{
imports = [
./kitchenowl
./nginxproxymanager.nix
];
options.modules.container = {
enable = mkEnableOption "container support";
};
config = mkIf cfg.enable {
virtualisation.podman = {
enable = true;
autoPrune.enable = true;
dockerCompat = true;
defaultNetwork.settings = {
# Required for container networking to be able to use names.
dns_enabled = mkForce false;
};
};
virtualisation.oci-containers.backend = "podman";
};
}