Flake: replace c++ tooling with python tooling in devshell

This commit is contained in:
Toast 2025-05-06 16:41:13 +02:00
parent 34b8610432
commit 02621b79aa

View file

@ -11,22 +11,16 @@
{ {
devShells.x86_64-linux.default = pkgs.mkShell { devShells.x86_64-linux.default = pkgs.mkShell {
name = "leek-devshell"; name = "leek-devshell";
packages = packages = with pkgs; [
let ruff
kdeDeps = with pkgs.kdePackages; [ (
extra-cmake-modules python3.withPackages (ps: with ps;[
qtbase python-lsp-server
qtdeclarative pyside6
kirigami ]
ki18n )
kcoreaddons )
qqc2-desktop-style ];
];
in
with pkgs; [
clang-tools
cmake
] ++ kdeDeps;
}; };
packages.x86_64-linux = rec { packages.x86_64-linux = rec {
default = leek; default = leek;