feat: add .elfeed to syncthing

This commit is contained in:
Swarsel 2024-12-05 03:33:32 +01:00
parent 85b0d93633
commit 85f5a5a408
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
5 changed files with 160 additions and 136 deletions

View file

@ -1,21 +1,22 @@
{ self, pkgs, config, ... }:
let
owner + "swarsel";
owner = "swarsel";
sopsFile = self + /secrets/work/secrets.yaml;
{
in
{
sops = {
secrets = {
clad = {
inherit owner sopsfile;
inherit owner sopsFile;
};
dcad = {
inherit owner sopsfile;
inherit owner sopsFile;
};
wsad = {
inherit owner sopsfile;
inherit owner sopsFile;
};
imbad = {
inherit owner sopsfile;
inherit owner sopsFile;
};
};
};
@ -110,4 +111,4 @@ let
};
};
}
}