updates post explanation fatberoo

This commit is contained in:
chem 2025-08-25 21:25:43 -06:00
parent 82f58738ad
commit 62cd093202
17 changed files with 17 additions and 178 deletions

View file

@ -1,20 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.local.services.syncthing;
in {
options.local.services.syncthing = {
enable = mkEnableOption "syncthing settings";
};
config = mkIf cfg.enable {
services.syncthing = {
enable = true;
tray.enable = true;
};
};
}