docs: add descriptions to devShells
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
b32fbc08bd
commit
2440029757
5 changed files with 25 additions and 3 deletions
|
@ -43,4 +43,8 @@ mkShell {
|
|||
'';
|
||||
})
|
||||
];
|
||||
|
||||
meta.description = ''
|
||||
Shell providing some utility scripts concerning the main flake.
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -5,9 +5,15 @@
|
|||
}: let
|
||||
inherit (pkgs.lib) listToAttrs nameValuePair;
|
||||
mkLangsShells = langs:
|
||||
listToAttrs (map (l:
|
||||
nameValuePair l (pkgs.callPackage "${self}/homeManagerModules/neovim/langs/${l}/shell.nix" {inherit self;}))
|
||||
langs);
|
||||
listToAttrs (map (
|
||||
l:
|
||||
nameValuePair
|
||||
l
|
||||
((pkgs.callPackage "${self}/homeManagerModules/neovim/langs/${l}/shell.nix" {inherit self;}).overrideAttrs (o: {
|
||||
meta.description = "${l} shell to be loaded by my Neovim config dynamically.";
|
||||
}))
|
||||
)
|
||||
langs);
|
||||
in
|
||||
mkLangsShells [
|
||||
"csharp"
|
||||
|
|
|
@ -7,4 +7,8 @@ mkShell {
|
|||
packages = [
|
||||
dotnetCorePackages.sdk_9_0
|
||||
];
|
||||
|
||||
meta.description = ''
|
||||
Shell that makes sure we have the right dotnet-sdk version for NetDaemon development.
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -11,4 +11,8 @@ mkShell {
|
|||
nodejs_latest
|
||||
typescript
|
||||
];
|
||||
|
||||
meta.description = ''
|
||||
Shell that provides `bumpNpmDeps`, node and typescript.
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -16,4 +16,8 @@ mkShell {
|
|||
|
||||
bumpNpmDeps
|
||||
];
|
||||
|
||||
meta.description = ''
|
||||
Shell that provides the dependencies for my subtitle management scripts.
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue