18 lines
276 B
Nix
18 lines
276 B
Nix
{
|
|
virtualisation = {
|
|
podman = {
|
|
enable = true;
|
|
|
|
dockerCompat = true;
|
|
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
containers = {
|
|
enable = true;
|
|
registries = {
|
|
insecure = ["artifactory.symcor.com"];
|
|
};
|
|
};
|
|
};
|
|
}
|