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,8 +5,14 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (pkgs.lib) listToAttrs nameValuePair;
|
inherit (pkgs.lib) listToAttrs nameValuePair;
|
||||||
mkLangsShells = langs:
|
mkLangsShells = langs:
|
||||||
listToAttrs (map (l:
|
listToAttrs (map (
|
||||||
nameValuePair l (pkgs.callPackage "${self}/homeManagerModules/neovim/langs/${l}/shell.nix" {inherit self;}))
|
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);
|
langs);
|
||||||
in
|
in
|
||||||
mkLangsShells [
|
mkLangsShells [
|
||||||
|
|
|
@ -7,4 +7,8 @@ mkShell {
|
||||||
packages = [
|
packages = [
|
||||||
dotnetCorePackages.sdk_9_0
|
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
|
nodejs_latest
|
||||||
typescript
|
typescript
|
||||||
];
|
];
|
||||||
|
|
||||||
|
meta.description = ''
|
||||||
|
Shell that provides `bumpNpmDeps`, node and typescript.
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,4 +16,8 @@ mkShell {
|
||||||
|
|
||||||
bumpNpmDeps
|
bumpNpmDeps
|
||||||
];
|
];
|
||||||
|
|
||||||
|
meta.description = ''
|
||||||
|
Shell that provides the dependencies for my subtitle management scripts.
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue