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

@ -3862,9 +3862,6 @@ Do not touch this.
"magicant" = {
id = "VMWGEE2-4HDS2QO-KNQOVGN-LXLX6LA-666E4EK-ZBRYRRO-XFEX6FB-6E3XLQO";
};
"zenfone9" = {
id = "SEH2NMT-IVRQUU5-VPW2HUQ-3GQYDBF-F6H6OY6-X3DZTUZ-LCRE2DJ-QNIXIQ2";
};
"sync (@oracle)" = {
id = "ETW6TST-NPK7MKZ-M4LXMHA-QUPQHDT-VTSHH5X-CR5EIN2-YU7E55F-MGT7DQB";
};
@ -3875,24 +3872,29 @@ Do not touch this.
folders = {
"Default Folder" = {
path = "/home/swarsel/Sync";
devices = [ "sync (@oracle)" "magicant" "zenfone9" "winters" ];
devices = [ "sync (@oracle)" "magicant" "winters" ];
id = "default";
};
"Obsidian" = {
path = "/home/swarsel/Nextcloud/Obsidian";
devices = [ "sync (@oracle)" "magicant" "zenfone9" "winters" ];
devices = [ "sync (@oracle)" "magicant" "winters" ];
id = "yjvni-9eaa7";
};
"Org" = {
path = "/home/swarsel/Nextcloud/Org";
devices = [ "sync (@oracle)" "magicant" "zenfone9" "winters" ];
devices = [ "sync (@oracle)" "magicant" "winters" ];
id = "a7xnl-zjj3d";
};
"Vpn" = {
path = "/home/swarsel/Vpn";
devices = [ "sync (@oracle)" "magicant" "zenfone9" "winters" ];
devices = [ "sync (@oracle)" "magicant" "winters" ];
id = "hgp9s-fyq3p";
};
".elfeed" = {
path = "/home/swarsel/.elfeed";
devices = [ "sync (@oracle)" "magicant" "winters" ];
id = "h7xbs-fs9v1";
};
};
};
};
@ -5675,7 +5677,7 @@ Also, the system state version is set here. No need to touch it.
path = "/Vault/data/syncthing/Sync";
type = "receiveonly";
versioning = null;
devices = [ "sync (@oracle)" "magicant" "zenfone9" "nbl-imba-2" ];
devices = [ "sync (@oracle)" "magicant" "nbl-imba-2" ];
id = "default";
};
"Obsidian" = {
@ -5685,7 +5687,7 @@ Also, the system state version is set here. No need to touch it.
type = "simple";
params.keep = "5";
};
devices = [ "sync (@oracle)" "magicant" "zenfone9" "nbl-imba-2" ];
devices = [ "sync (@oracle)" "magicant" "nbl-imba-2" ];
id = "yjvni-9eaa7";
};
"Org" = {
@ -5695,7 +5697,7 @@ Also, the system state version is set here. No need to touch it.
type = "simple";
params.keep = "5";
};
devices = [ "sync (@oracle)" "magicant" "zenfone9" "nbl-imba-2" ];
devices = [ "sync (@oracle)" "magicant" "nbl-imba-2" ];
id = "a7xnl-zjj3d";
};
"Vpn" = {
@ -5705,7 +5707,7 @@ Also, the system state version is set here. No need to touch it.
type = "simple";
params.keep = "5";
};
devices = [ "sync (@oracle)" "magicant" "zenfone9" "nbl-imba-2" ];
devices = [ "sync (@oracle)" "magicant" "nbl-imba-2" ];
id = "hgp9s-fyq3p";
};
"Documents" = {
@ -5718,6 +5720,11 @@ Also, the system state version is set here. No need to touch it.
devices = [ "magicant" "nbl-imba-2" ];
id = "hgr3d-pfu3w";
};
".elfeed" = {
path = "/home/swarsel/.elfeed";
devices = [ "sync (@oracle)" "magicant" "nbl-imba-2" "winters" ];
id = "h7xbs-fs9v1";
};
};
};
};
@ -6164,22 +6171,23 @@ Options that I need specifically at work. There are more options at [[#h:f0b2ea9
#+begin_src nix :tangle profiles/optional/nixos/work.nix
{ 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;
};
};
};