refactor(nix): devShell inited in shell.nix and information about added in README.md

This commit is contained in:
s0me1newithhand7s
2025-10-19 23:03:47 +03:00
parent 2362dca8b6
commit bfa1d5770d
3 changed files with 43 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
alejandra,
statix,
deadnix,
shfmt,
shellcheck,
jsonfmt,
lefthook,
kdePackages,
mkShellNoCC,
}:
mkShellNoCC {
#it's faster than mkDerivation / mkShell
packages = [
# nix
alejandra # formatter
statix # linter
deadnix # linter
# shell
shfmt # formatter
shellcheck # linter
# json
jsonfmt # formatter
# CoC
lefthook # githooks
kdePackages.qtdeclarative # qmlfmt, qmllint, qmlls and etc; Qt6
];
}