10 lines
No EOL
290 B
Nix
10 lines
No EOL
290 B
Nix
{config, lib, pkgs, modulesPath, ... }:
|
|
{
|
|
options.speccon18.home_manager.syncthing.enable = lib.mkEnableOption "enable syncthing";
|
|
config = lib.mkIf config.speccon18.home_manager.syncthing.enable {
|
|
services.syncthing = {
|
|
enable = true;
|
|
tray.enable = false;
|
|
};
|
|
};
|
|
} |