first working build of rewrite

This commit is contained in:
Steven Carpenter 2024-04-13 03:58:29 -04:00
commit 44a3f420c6
29 changed files with 1261 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{config, lib, pkgs, modulesPath, ... }:
{
options.speccon18.hm.syncthing.enable = lib.mkEnableOption "enable syncthing";
config = lib.mkIf config.speccon18.hm.syncthing.enable {
services.syncthing = {
enable = true;
tray.enable = false;
};
};
}