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

12 lines
324 B
Nix

{
# globally enable fish on all homes ever.
den.default.homeManager.programs.fish.enable = true;
perSystem =
{ checkCond, alice-at-rockhopper, ... }:
{
checks.alice-hm-fish-enabled-by-default = checkCond "home-managed fish for alice" (
alice-at-rockhopper.programs.fish.enable
);
};
}