diff --git a/src/modules/scripts.nix b/src/modules/scripts.nix index c74ece408..1727f5374 100644 --- a/src/modules/scripts.nix +++ b/src/modules/scripts.nix @@ -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;