infra/flake/den/templates/examples/modules/_example/ci/user-specific-hm-config.nix

14 lines
355 B
Nix
Raw Normal View History

2025-12-01 13:23:24 +07:00
{
# 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
);
};
}