nysh/nix/shell.nix
2024-09-22 00:56:08 +02:00

16 lines
455 B
Nix

{ pkgs, quickshell, ... }:
pkgs.mkShell {
buildInputs = [
quickshell
pkgs.kdePackages.qtdeclarative
pkgs.pre-commit
pkgs.typos
];
shellHook = ''
# Required for qmlls to find the correct type declarations
# Sadly Quickshell doesn't export some types declaratively
export QMLLS_BUILD_DIRS=${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:${quickshell}/lib/qt-6/qml/
${pkgs.pre-commit}/bin/pre-commit install -f
'';
}