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

8 lines
175 B
Nix
Raw Normal View History

2024-11-08 12:55:38 +00:00
{config, systemConfig, ...}: {
2024-11-08 10:32:21 +00:00
services.syncthing = {
enable = true;
tray.enable = true;
};
2024-11-09 07:30:05 +00:00
home.persistence.default.directories = [".local/state/syncthing"];
2024-11-08 10:32:21 +00:00
}