virtualisation.containers.policy
NixOS option
Signature verification policy file. If this option is empty the default policy file from skopeo will be used.
type: attribute setDefault
{ }Example
declared in: nixos/modules/virtualisation/containers.nixView source on NixOS/nixpkgs →{
default = [ { type = "insecureAcceptAnything"; } ];
transports = {
docker-daemon = {
"" = [ { type = "insecureAcceptAnything"; } ];
};
};
}