mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
services.syncthing.settings.folders = {
|
|
"notes" = {
|
|
id = "l62ul-lpweo"; # cspell:disable-line
|
|
path = "/home/richie/notes";
|
|
devices = [
|
|
"jeeves"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
"important" = {
|
|
id = "4ckma-gtshs"; # cspell:disable-line
|
|
path = "/home/richie/important";
|
|
devices = [
|
|
"bob"
|
|
"jeeves"
|
|
"phone"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
"music" = {
|
|
id = "vprc5-3azqc"; # cspell:disable-line
|
|
path = "/home/richie/music";
|
|
devices = [
|
|
"bob"
|
|
"ipad"
|
|
"jeeves"
|
|
"phone"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
"projects" = {
|
|
id = "vyma6-lqqrz"; # cspell:disable-line
|
|
path = "/home/richie/projects";
|
|
devices = [
|
|
"jeeves"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
rhapsody-in-temp = {
|
|
id = "rhapsody-in-green_temp";
|
|
path = "/home/richie/temp";
|
|
devices = [
|
|
"jeeves"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
"vault" = {
|
|
path = "/home/richie/vault";
|
|
devices = [
|
|
"jeeves"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
};
|
|
}
|