infra/module/aspect/software/file-manager/file-sync/syncthing.nix
2025-12-01 13:23:24 +07:00

14 lines
No EOL
226 B
Nix

{
den.aspects = {
syncthing = {
nixos =
{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.syncthing
pkgs.syncthingtray
];
};
};
};
}