refactor: move syncthing configs out of flake file

This commit is contained in:
Leyla Becker 2025-11-07 17:11:41 -06:00
parent 761246a4a4
commit d613dee364
3 changed files with 9 additions and 12 deletions

View file

@ -1,7 +1,7 @@
{
config,
lib,
outputs,
syncthingConfiguration,
...
}: let
mountDir = "/mnt/sync";
@ -27,7 +27,7 @@ in {
configDir = configDir;
overrideDevices = true;
overrideFolders = true;
configuration = outputs.syncthingConfiguration;
configuration = syncthingConfiguration;
deviceName = config.networking.hostName;
};
}