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 {
name = "leek-devshell";
packages =
let
kdeDeps = with pkgs.kdePackages; [
extra-cmake-modules
qtbase
qtdeclarative
kirigami
ki18n
kcoreaddons
qqc2-desktop-style
packages = with pkgs; [
ruff
(
python3.withPackages (ps: with ps;[
python-lsp-server
pyside6
]
)
)
];
in
with pkgs; [
clang-tools
cmake
] ++ kdeDeps;
};
packages.x86_64-linux = rec {
default = leek;