just update the git

This commit is contained in:
2025-08-28 19:05:48 -05:00
parent bd14a0950b
commit ef6face633
3 changed files with 54 additions and 24 deletions

14
mods/syncthing.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }: {
config = {
services.syncthing = {
enable = true;
dataDir = "/home/takanashi";
openDefaultPorts = true;
configDir = "/home/takanashi/.config/syncthing";
user = "takanashi";
group = "users";
guiAddress = "0.0.0.0:8384";
};
};
}