Compare commits

..

2 commits

Author SHA1 Message Date
dac8ca6690
add needed package diffutils
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-09-04 11:24:06 +02:00
ea72fd5cea
Automated break down of Nix flake checks for CI 2025-09-04 11:23:52 +02:00
2 changed files with 3 additions and 2 deletions

View file

@ -98,7 +98,8 @@ in
{ {
options.enable = lib.mkEnableOption "Hello in the shell"; options.enable = lib.mkEnableOption "Hello in the shell";
}; };
implementation = cfg: { implementation =
cfg: {
resources = lib.optionalAttrs cfg.enable { resources = lib.optionalAttrs cfg.enable {
hello.login-shell.packages.hello = pkgs.hello; hello.login-shell.packages.hello = pkgs.hello;
}; };