thrall: Enable hledger web interface

This commit is contained in:
Alexander Kobjolke 2023-04-17 00:29:44 +02:00
parent 407d1d2ad0
commit df600c917c
3 changed files with 33 additions and 5 deletions

View file

@ -1,12 +1,14 @@
# nix run github:ryantm/agenix -- -i <identity> -e password.age
let
thrall = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJHNRSYszckbCwKoX/cci8D40DGM/SG/NJ/u/uB361re";
thrall =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJHNRSYszckbCwKoX/cci8D40DGM/SG/NJ/u/uB361re";
alex = "age13uv5phqjuvd90rr3aa7mg3xsmcmyx8cfz9v52w2a782qecssja9sw9nt8a";
systems = [ thrall ];
users = [ alex ];
in
{
in {
"mailPass.age".publicKeys = users ++ systems;
"paperless-mail.age".publicKeys = users ++ systems;
"wireguard-thrall.age".publicKeys = [thrall];
"wireguard-thrall.age".publicKeys = [ thrall ];
"hledger-web.htaccess.age".publicKeys = users ++ systems;
}