nix: remove commented devshell stuff

This commit is contained in:
Soramane 2025-07-15 17:46:06 +10:00
parent e15d9b79be
commit 2daa90a4b3

View file

@ -38,30 +38,5 @@
};
default = caelestia-shell;
});
# devShells = forAllSystems (pkgs: {
# default = let
# qtDeps = with pkgs.kdePackages; [
# inputs.quickshell.packages.${pkgs.system}.default
# qtbase
# qtdeclarative
# ];
# qmlPath = pkgs.lib.makeSearchPath "lib/qt-6/qml" qtDeps;
# in
# pkgs.mkShellNoCC {
# inputsFrom = [self.packages.${pkgs.system}.caelestia-shell];
# packages =
# qtDeps
# ++ [
# (inputs.caelestia-cli.packages.${pkgs.system}.default.override {
# discordBin = "equibop";
# qtctStyle = "Breeze";
# })
# ];
# shellHook = ''
# export QML2_IMPORT_PATH="$QML2_IMPORT_PATH:${qmlPath}"
# '';
# };
# });
};
}