nixos-config/programs/desktop/syncthing/default.nix

9 lines
179 B
Nix
Raw Normal View History

2024-11-09 14:02:26 +00:00
{ config, systemConfig, ... }:
{
2024-11-08 10:32:21 +00:00
services.syncthing = {
enable = true;
tray.enable = true;
};
2024-11-09 14:02:26 +00:00
home.persistence.default.directories = [ ".local/state/syncthing" ];
2024-11-08 10:32:21 +00:00
}