mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
34 lines
691 B
Nix
34 lines
691 B
Nix
{
|
|
services.syncthing.settings.folders = {
|
|
"dotfiles" = {
|
|
path = "/home/richie/dotfiles";
|
|
devices = [
|
|
"jeeves"
|
|
"rhapsody-in-green"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
"important" = {
|
|
id = "4ckma-gtshs"; # cspell:disable-line
|
|
path = "/home/richie/important";
|
|
devices = [
|
|
"phone"
|
|
"jeeves"
|
|
"rhapsody-in-green"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
"music" = {
|
|
id = "vprc5-3azqc"; # cspell:disable-line
|
|
path = "/home/richie/music";
|
|
devices = [
|
|
"ipad"
|
|
"phone"
|
|
"jeeves"
|
|
"rhapsody-in-green"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
};
|
|
}
|