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

11 lines
No EOL
168 B
Nix

{
den.aspects = {
unison = {
homeManager =
{ config, pkgs, ... }:
{
home.packages = [ pkgs.unison ];
};
};
};
}