Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Alexander Kobjolke 2023-04-11 00:56:29 +02:00
commit afeae40848
3 changed files with 8 additions and 1 deletions

View file

@ -36,6 +36,7 @@ in {
age.secrets = { age.secrets = {
mailPass.file = ../../secrets/mailPass.age; mailPass.file = ../../secrets/mailPass.age;
paperless-mail.file = ../../secrets/paperless-mail.age;
wireguard-thrall.file = ../../secrets/wireguard-thrall.age; wireguard-thrall.file = ../../secrets/wireguard-thrall.age;
}; };
@ -313,6 +314,10 @@ in {
catchAll = [ "jakalx.net" ]; catchAll = [ "jakalx.net" ];
}; };
"archive@failco.de" = {
hashedPasswordFile = config.age.secrets.paperless-mail.path;
};
}; };
certificateScheme = 3; certificateScheme = 3;

BIN
secrets/paperless-mail.age Normal file

Binary file not shown.

View file

@ -1,10 +1,12 @@
let let
thrall = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJHNRSYszckbCwKoX/cci8D40DGM/SG/NJ/u/uB361re"; thrall = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJHNRSYszckbCwKoX/cci8D40DGM/SG/NJ/u/uB361re";
alex = "age13uv5phqjuvd90rr3aa7mg3xsmcmyx8cfz9v52w2a782qecssja9sw9nt8a";
systems = [ thrall ]; systems = [ thrall ];
users = []; users = [ alex ];
in in
{ {
"mailPass.age".publicKeys = users ++ systems; "mailPass.age".publicKeys = users ++ systems;
"paperless-mail.age".publicKeys = users ++ systems;
"wireguard-thrall.age".publicKeys = [thrall]; "wireguard-thrall.age".publicKeys = [thrall];
} }