flocon/modules/hm/services/syncthing.nix

12 lines
155 B
Nix
Raw Normal View History

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