Skip to content

Commit

Permalink
feat(scripts.nix): add 'just' option to include script in just runner
Browse files Browse the repository at this point in the history
  • Loading branch information
use-the-fork committed Jun 21, 2024
1 parent b99d03b commit 13ce3c1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/modules/scripts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ let
description = "Description of the script.";
default = "";
};
just = {
enable = lib.mkOption {
type = types.bool;
description = "Include this script in just runner.";
default = true;
};
};
scriptPackage = lib.mkOption {
internal = true;
type = types.package;
Expand Down

0 comments on commit 13ce3c1

Please sign in to comment.