remove Obsidian from syncthing

This commit is contained in:
Yan Lin 2025-11-28 22:54:05 +01:00
parent 3540c92cc8
commit 7df64d809f
3 changed files with 3 additions and 14 deletions

View file

@ -41,7 +41,7 @@ in
options.syncthing-custom = {
enabledFolders = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ "Credentials" "Documents" "Obsidian" "Archive" ];
default = [ "Credentials" "Documents" "Archive" ];
description = "List of Syncthing folders to enable for this host.";
};
};
@ -98,14 +98,6 @@ in
versioning = commonVersioning;
};
})
// (lib.optionalAttrs (lib.elem "Obsidian" cfg.enabledFolders) {
"Obsidian" = {
path = "~/Obsidian";
devices = pcDevices;
ignorePerms = true;
versioning = commonVersioning;
};
})
// (lib.optionalAttrs (lib.elem "Archive" cfg.enabledFolders) {
"Archive" = {
path = "~/Archive";
@ -153,9 +145,6 @@ in
(lib.mkIf (lib.elem "Documents" cfg.enabledFolders) {
"Documents/.stignore".text = stignoreContent;
})
(lib.mkIf (lib.elem "Obsidian" cfg.enabledFolders) {
"Obsidian/.stignore".text = stignoreContent;
})
(lib.mkIf (lib.elem "Archive" cfg.enabledFolders) {
"Archive/.stignore".text = stignoreContent;
})