docs: update to comments

This commit is contained in:
Santiago Fraire 2023-06-26 09:14:11 +02:00
parent 1a3b864261
commit 6f53e9012c
5 changed files with 17 additions and 14 deletions

View file

@ -19,11 +19,11 @@ mkTransposedPerSystemModule {
[`nix develop .#<name>`](https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-develop.html) will run `devShells.<name>`.
'';
example = literalExpression ''
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ wget bat git cargo ];
{
default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ wget bat cargo ];
};
}
}
'';
};
file = ./devShells.nix;