Files
noctalia-shell/nix/shell.nix
2025-11-19 02:52:17 +08:00

35 lines
499 B
Nix

{
quickshell,
alejandra,
statix,
deadnix,
shfmt,
shellcheck,
jsonfmt,
lefthook,
kdePackages,
mkShellNoCC,
}:
mkShellNoCC {
#it's faster than mkDerivation / mkShell
packages = [
quickshell
# 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
];
}