58 current 2025-10-05 14:46:22 25.05.20251001.5b5be50 6.12.49 *

This commit is contained in:
2025-10-05 14:46:55 -05:00
parent f38635fbf5
commit 88435e911e
2 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# flake for blakes nixos config # flake for blakes nixos config
# define new devices in outputs # define new devices in outputs
# generation: 57 current 2025-10-05 14:39:37 25.05.20251001.5b5be50 6.12.49 * # generation: 58 current 2025-10-05 14:46:22 25.05.20251001.5b5be50 6.12.49 *
{ {
description = "blakes nix config"; description = "blakes nix config";
inputs = { inputs = {

View File

@@ -33,9 +33,12 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
services.syncthing = { services.syncthing = {
enable = true; enable = true;
user = "blake"; user = "root";
group = "blake"; group = "blake";
dataDir = "/home/blake/.local/state/syncthing"; #dataDir = "/home/blake/.local/state/syncthing";
#configDir = "/home/blake/.local/state/syncthing";
dataDir = cfg.data_dir;
configDir = cfg.config_dir;
guiAddress = "0.0.0.0:2222"; guiAddress = "0.0.0.0:2222";
openDefaultPorts = true; openDefaultPorts = true;
}; };