mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
31 lines
645 B
Nix
31 lines
645 B
Nix
{
|
|
networking.firewall.allowedTCPPorts = [ 8384 ];
|
|
|
|
services.syncthing = {
|
|
overrideFolders = false;
|
|
guiAddress = "192.168.90.35:8384";
|
|
settings = {
|
|
"dotfiles" = {
|
|
path = "/home/richie/dotfiles";
|
|
devices = [
|
|
"bob"
|
|
"jeeves"
|
|
"rhapsody-in-green"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
"important" = {
|
|
id = "4ckma-gtshs"; # cspell:disable-line
|
|
path = "/home/richie/important";
|
|
devices = [
|
|
"bob"
|
|
"jeeves"
|
|
"phone"
|
|
"rhapsody-in-green"
|
|
];
|
|
fsWatcherEnabled = true;
|
|
};
|
|
};
|
|
};
|
|
}
|