Add more detail to syncthing config
This commit is contained in:
parent
5c83387057
commit
312f158ad4
24
nixos.nix
24
nixos.nix
|
@ -186,9 +186,29 @@ let systemInformation = import ./system/system-information.nix; in
|
||||||
fwupd.enable = true;
|
fwupd.enable = true;
|
||||||
syncthing = {
|
syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configDir = /home/ember/.config/syncthing;
|
dataDir = "/home/ember";
|
||||||
dataDir = /home/ember;
|
configDir = "/home/ember/.config/syncthing";
|
||||||
user = "ember";
|
user = "ember";
|
||||||
|
devices = {
|
||||||
|
oak.name = "🌳 Oak";
|
||||||
|
oak.id =
|
||||||
|
"MQBRJVF-GDHYWZ3-LIDUX2H-3Z2AQ2G-QPTQWHN-YUJ454D-CWT4HHU-GGPPTAW";
|
||||||
|
|
||||||
|
mugwort.name = "🌿 Mugwort";
|
||||||
|
mugwort.id =
|
||||||
|
"GVJZF4E-5BYFG7U-P6KZPLL-CSM3O3H-JOJUZIX-YGZ3QXM-CHWTA4J-AG6KFQK";
|
||||||
|
|
||||||
|
kudzu.name = "🥦 Kudzu";
|
||||||
|
kudzu.id =
|
||||||
|
"RQUVE3L-D345NMM-4KUE7D6-PCJ3HIO-VFZNYJ6-BNF2YH3-6UBCXF7-NS5YKQR";
|
||||||
|
};
|
||||||
|
folders."~/Sync/" = {
|
||||||
|
devices = ["oak" "kudzu" "mugwort"];
|
||||||
|
id = "xuwnn-mknwe";
|
||||||
|
label = "Sync";
|
||||||
|
};
|
||||||
|
overrideDevices = true;
|
||||||
|
#overrideFolders = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue