A help message for development environments. A devenv module written in Nix.
-
Import the
devenvModule
within a devenv configuration.{ outputs = inputs: { devShells."x86_64-linux".default = devenv.lib.mkShell { inherit inputs pkgs; modules = [ inputs.env-help.devenvModule ... ]; }; ... }; ... }
-
Enable
env-help
within a devenv configuration.{ env-help = { enable = true; ... }; scripts = { "example" = { exec = ...; description = ...; }; ... }; ... }
-
Run
env-help
to list information about the development environment.env-help