diff options
| author | andromeda <andromeda@lenovo> | 2026-05-01 13:37:31 +0200 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2026-05-01 13:37:31 +0200 |
| commit | a98b53de9991167471e840ae3c18798c8d9fc1b7 (patch) | |
| tree | a171feae252b59d277e3c2790d8f1224da315ea0 /nix/secrets.nix | |
new conf
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`"; + }; + }; +} |
