flocon/modules/hm/services/syncthing.nix

11 lines
155 B
Nix

{
lib,
osConfig,
...
}: {
config = lib.mkIf osConfig.local.profiles.desktop.enable {
services.syncthing = {
enable = true;
};
};
}