diff options
author | Soispha <soispha@vhack.eu> | 2023-08-11 18:15:23 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-11 18:15:23 +0200 |
commit | e33c36fe25c76cf549c200b83082bf0753526481 (patch) | |
tree | b24f662509aa4ba5fda48e267d6592b091d43f0e /system/secrets/secrets.nix | |
parent | chore(version): v0.8.0 (diff) | |
parent | Fix(system/services/invidious): Add interpreter to start script (diff) | |
download | nixos-server-e33c36fe25c76cf549c200b83082bf0753526481.tar.gz nixos-server-e33c36fe25c76cf549c200b83082bf0753526481.zip |
Chore(Merge): Branch 'invidious'
Diffstat (limited to 'system/secrets/secrets.nix')
-rw-r--r-- | system/secrets/secrets.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/system/secrets/secrets.nix b/system/secrets/secrets.nix index 2fd4132..194ed3c 100644 --- a/system/secrets/secrets.nix +++ b/system/secrets/secrets.nix @@ -3,15 +3,15 @@ let sils = "age1vuhaey7kd9l76y6f9weeqmde3s4kjw38869ju6u3027yece2r3rqssjxst"; server1 = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMnqsfIZjelH7rcvFvnLR5zUZuC8thsBupBlvjcMRBUm"; -in { - "keycloak/passwd.tix".publicKeys = [ - soispha - sils - server1 - ]; - "matrix-synapse/passwd.tix".publicKeys = [ + + allSecrets = [ soispha sils server1 ]; +in { + "keycloak/passwd.tix".publicKeys = allSecrets; + "matrix-synapse/passwd.tix".publicKeys = allSecrets; + "invidious/passwd.tix".publicKeys = allSecrets; + "invidious/settings.tix".publicKeys = allSecrets; } |