25 lines
566 B
Nix
25 lines
566 B
Nix
{ config, lib, ... }:
|
|
let
|
|
cfg = config.modules.container;
|
|
inherit (lib) mkIf mkEnableOption;
|
|
in
|
|
{
|
|
imports = [ ./kitchenowl ];
|
|
|
|
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 = true;
|
|
};
|
|
};
|
|
virtualisation.oci-containers.backend = "podman";
|
|
};
|
|
}
|