infra/module/aspect/software/file-manager/file-sync/syncthing.nix

14 lines
226 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
syncthing = {
nixos =
{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.syncthing
pkgs.syncthingtray
];
};
};
};
}