nix/config/Podman.nix

21 lines
377 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
lib,
config,
...
}: let
cfg = config.module.podman;
in {
config = lib.mkIf cfg.enable {
virtualisation.podman = {
enable = true;
2024-06-25 04:04:39 +03:00
2024-11-04 04:37:29 +03:00
# Free the 53 port ffs.
defaultNetwork.settings.dns_enabled = false;
2024-06-25 04:04:39 +03:00
2024-11-04 04:37:29 +03:00
# Do not interfere with Docker so we can have both installed at the same time.
# Podman can't replace Docker anyway.
dockerCompat = false;
};
};
2024-06-25 04:04:39 +03:00
}