mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
created syncthing.nix for jeeves
This commit is contained in:
@@ -16,6 +16,7 @@ in
|
|||||||
./networking.nix
|
./networking.nix
|
||||||
./programs.nix
|
./programs.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
|
./syncthing.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.zfs.extraPools = [
|
boot.zfs.extraPools = [
|
||||||
@@ -36,54 +37,6 @@ in
|
|||||||
|
|
||||||
sysstat.enable = true;
|
sysstat.enable = true;
|
||||||
|
|
||||||
syncthing.guiAddress = "192.168.90.40:8384";
|
|
||||||
syncthing.settings.folders = {
|
|
||||||
"notes" = {
|
|
||||||
id = "l62ul-lpweo"; # cspell:disable-line
|
|
||||||
path = vars.media_notes;
|
|
||||||
devices = [
|
|
||||||
"bob"
|
|
||||||
];
|
|
||||||
fsWatcherEnabled = true;
|
|
||||||
};
|
|
||||||
"books" = {
|
|
||||||
id = "6uppx-vadmy"; # cspell:disable-line
|
|
||||||
path = "${vars.storage_syncthing}/books";
|
|
||||||
devices = [
|
|
||||||
"bob"
|
|
||||||
"phone"
|
|
||||||
];
|
|
||||||
fsWatcherEnabled = true;
|
|
||||||
};
|
|
||||||
"important" = {
|
|
||||||
id = "4ckma-gtshs"; # cspell:disable-line
|
|
||||||
path = "${vars.storage_syncthing}/important";
|
|
||||||
devices = [
|
|
||||||
"bob"
|
|
||||||
"phone"
|
|
||||||
];
|
|
||||||
fsWatcherEnabled = true;
|
|
||||||
};
|
|
||||||
"music" = {
|
|
||||||
id = "vprc5-3azqc"; # cspell:disable-line
|
|
||||||
path = "${vars.storage_syncthing}/music";
|
|
||||||
devices = [
|
|
||||||
"bob"
|
|
||||||
"ipad"
|
|
||||||
"phone"
|
|
||||||
];
|
|
||||||
fsWatcherEnabled = true;
|
|
||||||
};
|
|
||||||
"projects" = {
|
|
||||||
id = "vyma6-lqqrz"; # cspell:disable-line
|
|
||||||
path = "${vars.storage_syncthing}/projects";
|
|
||||||
devices = [
|
|
||||||
"bob"
|
|
||||||
];
|
|
||||||
fsWatcherEnabled = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
zfs = {
|
zfs = {
|
||||||
trim.enable = true;
|
trim.enable = true;
|
||||||
autoScrub.enable = true;
|
autoScrub.enable = true;
|
||||||
|
|||||||
54
systems/jeeves/syncthing.nix
Normal file
54
systems/jeeves/syncthing.nix
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
let
|
||||||
|
vars = import ./vars.nix;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
services.syncthing = {
|
||||||
|
guiAddress = "192.168.90.40:8384";
|
||||||
|
settings.folders = {
|
||||||
|
"notes" = {
|
||||||
|
id = "l62ul-lpweo"; # cspell:disable-line
|
||||||
|
path = vars.media_notes;
|
||||||
|
devices = [
|
||||||
|
"bob"
|
||||||
|
];
|
||||||
|
fsWatcherEnabled = true;
|
||||||
|
};
|
||||||
|
"books" = {
|
||||||
|
id = "6uppx-vadmy"; # cspell:disable-line
|
||||||
|
path = "${vars.storage_syncthing}/books";
|
||||||
|
devices = [
|
||||||
|
"bob"
|
||||||
|
"phone"
|
||||||
|
];
|
||||||
|
fsWatcherEnabled = true;
|
||||||
|
};
|
||||||
|
"important" = {
|
||||||
|
id = "4ckma-gtshs"; # cspell:disable-line
|
||||||
|
path = "${vars.storage_syncthing}/important";
|
||||||
|
devices = [
|
||||||
|
"bob"
|
||||||
|
"phone"
|
||||||
|
];
|
||||||
|
fsWatcherEnabled = true;
|
||||||
|
};
|
||||||
|
"music" = {
|
||||||
|
id = "vprc5-3azqc"; # cspell:disable-line
|
||||||
|
path = "${vars.storage_syncthing}/music";
|
||||||
|
devices = [
|
||||||
|
"bob"
|
||||||
|
"ipad"
|
||||||
|
"phone"
|
||||||
|
];
|
||||||
|
fsWatcherEnabled = true;
|
||||||
|
};
|
||||||
|
"projects" = {
|
||||||
|
id = "vyma6-lqqrz"; # cspell:disable-line
|
||||||
|
path = "${vars.storage_syncthing}/projects";
|
||||||
|
devices = [
|
||||||
|
"bob"
|
||||||
|
];
|
||||||
|
fsWatcherEnabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user