summaryrefslogtreecommitdiff
path: root/secrets.nix
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-05-06 19:37:56 +0200
committerandromeda <andromeda@lenovo>2026-05-06 19:37:56 +0200
commite5aaed7169e7a9b1ae537763ee94ea01aa401852 (patch)
treea386a051a9e18e31ae125ec9418410cbe5b64e4d /secrets.nix
parent6a6630647c79e80d7995eac21bc188b5a516d142 (diff)
neo layout
Diffstat (limited to 'secrets.nix')
-rw-r--r--secrets.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/secrets.nix b/secrets.nix
new file mode 100644
index 0000000..fd1c166
--- /dev/null
+++ b/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`";
+ };
+ };
+}