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

17 lines
353 B
Nix

{ den, lib, ... }:
{
den.aspects.will.includes = [
# will has always loved red snappers
(den._.user-shell "fish")
];
perSystem =
{ checkCond, adelie, ... }:
{
checks.will-always-love-you = checkCond "red-snapper fish is default shell" (
"fish" == lib.getName adelie.config.users.users.will.shell
);
};
}