mirror of
https://gitlab.com/rensa-nix/devtools.git
synced 2025-12-12 06:10:06 +01:00
20 lines
332 B
Markdown
20 lines
332 B
Markdown
|
|
# Rensa Devtools
|
||
|
|
|
||
|
|
Utilities and dev tools with integration into the Rensa ecosystem (mainly devshell).
|
||
|
|
|
||
|
|
## Usage
|
||
|
|
|
||
|
|
```nix
|
||
|
|
let
|
||
|
|
devshell = inputs.devshell.lib { inherit pkgs; };
|
||
|
|
in
|
||
|
|
devshell.mkShell {
|
||
|
|
imports = [inputs.devtools.devshellModule];
|
||
|
|
|
||
|
|
# use the modules
|
||
|
|
lefthook.enable = true;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
[See all options](./options.md)
|