1769351773

This commit is contained in:
2026-01-25 16:36:13 +02:00
parent f2c2970094
commit e114cc3dfc
2 changed files with 20 additions and 4 deletions

8
flake.lock generated
View File

@@ -1080,11 +1080,11 @@
"mysecrets": {
"flake": false,
"locked": {
"lastModified": 1760457736,
"narHash": "sha256-SGmJ73k4awSgiyGCePIU4nl39qJeuIHQPzrObFluPbQ=",
"lastModified": 1769351269,
"narHash": "sha256-Ne3hnPbWCwIfEe18fg6qPVV/NVAbL7SH/yUF/HPvVq4=",
"ref": "refs/heads/main",
"rev": "e2591ce1eba843404256d62af9fe7dcb6c38898d",
"revCount": 26,
"rev": "07201cd94add8cdf0fd1f5180f333fcd3c87aa61",
"revCount": 28,
"type": "git",
"url": "ssh://gitea@gitea.linerds.us/unexplrd/nix-secrets"
},

View File

@@ -56,6 +56,22 @@ in {
inherit (sshKey) mode owner;
path = dotSsh "id_uni_ed25519.pub";
};
"ssh-goodness" = {
inherit (sshKey) mode owner;
path = dotSsh "id_goodness_ed25519";
};
"ssh-goodness.pub" = {
inherit (sshKey) mode owner;
path = dotSsh "id_goodness_ed25519.pub";
};
"ssh-gracious" = {
inherit (sshKey) mode owner;
path = dotSsh "id_gracious_ed25519";
};
"ssh-gracious.pub" = {
inherit (sshKey) mode owner;
path = dotSsh "id_gracious_ed25519.pub";
};
};
};
}