nixos/services/syncthing/folders/notes.nix

18 lines
345 B
Nix
Raw Normal View History

{lib, ...}: {
imports = [../devices];
services.syncthing.folders."Notes" = {
label = "Notes";
path = lib.mkDefault "/var/lib/syncthing/Notes/";
id = "4ggjz-5dyop";
ignorePerms = true;
devices = lib.mkDefault [
"ion"
"legion"
"monarch"
"northstar"
"vanguard"
];
enable = true;
};
}