infra/flake/den/templates/examples/modules/_example/ci/user-specific-hm-config.nix
2025-12-01 13:23:24 +07:00

13 lines
355 B
Nix

{
# Example: enable helix for alice on all its home-managed hosts.
den.aspects.alice.homeManager.programs.helix.enable = true;
perSystem =
{ checkCond, alice-at-rockhopper, ... }:
{
checks.alice-hm-helix-enabled-by-user = checkCond "home-managed helix for alice" (
alice-at-rockhopper.programs.helix.enable
);
};
}