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

11 lines
168 B
Nix
Raw Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
unison = {
homeManager =
{ config, pkgs, ... }:
{
home.packages = [ pkgs.unison ];
};
};
};
}