19 lines
269 B
Nix
19 lines
269 B
Nix
{ ... }:
|
|
|
|
{
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
|
|
# Disable netavark
|
|
# defaultNetwork.settings = {
|
|
# dns_enabled = false;
|
|
# };
|
|
|
|
# Auto-prune old containers
|
|
autoPrune = {
|
|
enable = true;
|
|
flags = [ "--all" ];
|
|
};
|
|
};
|
|
}
|
|
|