forked from auxolotl/docs
update default shell
This commit is contained in:
parent
8aaf4b43e7
commit
1e2c807eb0
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -8,3 +8,4 @@ mkdocs-hooks/__pycache__
|
||||||
public
|
public
|
||||||
result-doc
|
result-doc
|
||||||
deploy.sh
|
deploy.sh
|
||||||
|
nixos-docs
|
||||||
|
|
|
@ -1,19 +1,23 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let
|
let
|
||||||
customPython = pkgs.python312.withPackages (ps: [
|
customPython = pkgs.python312.withPackages (ps: [
|
||||||
ps.mkdocs-material
|
|
||||||
ps.mkdocs
|
|
||||||
ps.pillow
|
|
||||||
ps.cairosvg
|
ps.cairosvg
|
||||||
|
ps.jq
|
||||||
|
ps.mkdocs
|
||||||
|
ps.mkdocs-material
|
||||||
|
ps.pillow
|
||||||
|
ps.rich
|
||||||
]);
|
]);
|
||||||
in
|
in
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
customPython
|
customPython
|
||||||
pkgs.deadnix
|
pkgs.deadnix
|
||||||
|
pkgs.jq
|
||||||
|
pkgs.nil
|
||||||
|
pkgs.nixd
|
||||||
pkgs.nixfmt-rfc-style
|
pkgs.nixfmt-rfc-style
|
||||||
pkgs.statix
|
pkgs.statix
|
||||||
pkgs.nixd
|
pkgs.ruff
|
||||||
pkgs.nil
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue