diff options
Diffstat (limited to 'nix/secrets.nix')
| -rw-r--r-- | nix/secrets.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nix/secrets.nix b/nix/secrets.nix new file mode 100644 index 0000000..fd1c166 --- /dev/null +++ b/nix/secrets.nix @@ -0,0 +1,10 @@ +{lib, ...}: { + imports = [./pub-keys.nix]; + options = { + pub-keys.ssh = lib.mkOption { + type = lib.types.attrsOf lib.types.str; + default = {}; + description = "set of public keys as `name = key`"; + }; + }; +} |
