mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2025-12-06 06:36:15 +00:00
35 lines
499 B
Nix
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
|
|
];
|
|
}
|