infra/flake/den/templates/examples/modules/_example/ci/host-configures-users.nix
2025-12-01 13:23:24 +07:00

13 lines
362 B
Nix

{
# Example: host provides static config to all its users hm.
den.aspects.rockhopper.homeManager.programs.direnv.enable = true;
perSystem =
{ checkCond, alice-at-rockhopper, ... }:
{
checks.host-contributes-to-user = checkCond "rockhopper contributes to all its users" (
alice-at-rockhopper.programs.direnv.enable
);
};
}