migrate to radicle

This commit is contained in:
Anish Lakhwara
2026-01-21 21:55:37 -08:00
parent 928a3f56ad
commit cd8bb0fe0f
9 changed files with 462 additions and 36 deletions
+60 -11
View File
@@ -7,9 +7,21 @@ let
helix = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAKrL6IDHNnHmxi0q9nzu87NOyidPm3HpE7klU368lEf root@helix";
helix2 = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK2G81z1E51ioJQGLHnTJEjgSdBqLM6mb72Z+0atE6Bf root@helix";
work = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHOnfDvR2D2nGnC+DZYDUXiokzz+eLfZwkp+O8WjWutp anishlakhwara@Anishs-MacBook-Pro.local";
curve = [ system user ];
allUserKeys = [ system user mossnet ];
systemOnly = [ system mossnet lituus helix ];
curve = [
system
user
];
allUserKeys = [
system
user
mossnet
];
systemOnly = [
system
mossnet
lituus
helix
];
in
{
"taskwarrior-private.age".publicKeys = curve;
@@ -20,10 +32,22 @@ in
"borg-password.age".publicKeys = systemOnly;
"borg-key.age".publicKeys = systemOnly;
"helix-wg.age".publicKeys = [ helix2 helix ];
"freshrss-dbpass.age".publicKeys = [ helix2 helix ];
"woodpecker-server-secrets.age".publicKeys = [ helix2 helix ];
"gitea-dbpass.age".publicKeys = [ helix helix2 ];
"helix-wg.age".publicKeys = [
helix2
helix
];
"freshrss-dbpass.age".publicKeys = [
helix2
helix
];
"woodpecker-server-secrets.age".publicKeys = [
helix2
helix
];
"gitea-dbpass.age".publicKeys = [
helix
helix2
];
"synapse-config.age".publicKeys = [ lituus ];
"synapse-database-password.age".publicKeys = [ lituus ];
@@ -31,12 +55,37 @@ in
"telegram-matrix-env.age".publicKeys = [ lituus ];
"wallabag.age".publicKeys = [ mossnet ];
"woodpecker-agent-secret.age".publicKeys = [ mossnet helix helix2 ];
"woodpecker-agent-secret.age".publicKeys = [
mossnet
helix
helix2
];
"box-wg.age".publicKeys = [ mossnet ];
"wallabag-password.age".publicKeys = [ mossnet ];
"wallabag-secret.age".publicKeys = [ mossnet ];
"work-wg.age".publicKeys = [ work user system ];
"github-token.age".publicKeys = [ work user system mossnet ];
"anthropicToken.age".publicKeys = [ work user system mossnet ];
"work-wg.age".publicKeys = [
work
user
system
];
"github-token.age".publicKeys = [
work
user
system
mossnet
];
"anthropicToken.age".publicKeys = [
work
user
system
mossnet
];
# Radicle node keys
"radicle-box-key.age".publicKeys = [ mossnet ];
"radicle-helix-key.age".publicKeys = [
helix
helix2
];
}