services.guix.substituters.authorizedKeys

A list of signing keys for each substitute server to be authorized as a source of substitutes. Without this, the listed substitute servers from services.guix.substituters.urls would be ignored with some exceptions.

Type
list of absolute path
Default
''
  The packaged signing keys from {option}`services.guix.package`.
''
Example
options.services.guix.substituters.authorizedKeys.default ++ [
  (builtins.fetchurl {
    url = "https://guix.example.com/signing-key.pub";
  })

  (builtins.fetchurl {
    url = "https://guix.example.org/static/signing-key.pub";
  })
]
Declared
<nixpkgs/nixos/modules/services/misc/guix>