MyNixOS website logo
option

services.opkssh.authorizations

User authorization mappings.

Declarations
Type
list of (submodule)
Default
[ ]
Example
# This example refers to values in the providers example
# adjust your expressions as necessary
[
  {
    user = "alice";
    principal = "[email protected]";
    inherit (config.services.opkssh.providers.google) issuer;
  }
  {
    user = "bob";
    principal = "repo:NixOs/nixpkgs:environment:production";
    inherit (config.services.opkssh.providers.github) issuer;
  }
];