Kde/plasma: get rid of the custom breeze colorscheme

This commit is contained in:
Toast 2024-04-29 13:57:43 +02:00
parent 012687565a
commit 26798e0356

View file

@ -19,21 +19,6 @@
};
};
# Make custom packages
breezeTint = pkgs.stdenv.mkDerivation {
name = "breeze-tint";
src = "${pkgs.breeze-qt5}";
patches = [./patches/BreezeTint.patch];
installPhase = ''
runHook preInstall
mkdir -p $out/share/color-schemes/
cp -r share/color-schemes/* $out/share/color-schemes/
runHook postInstall
'';
};
# /etc/xdg is not read by plasma, so to change the default settings you need to put them in a package
plasmaDefaults = pkgs.stdenv.mkDerivation {
name = "toast-plasma-defaults";
@ -62,8 +47,8 @@ in {
# GTK apps need dconf to grab the correct theme on Wayland
programs.dconf.enable = true;
# Install the patched Breeze color schemes as well as the plasma default configs
environment.systemPackages = [breezeTint plasmaDefaults];
# Install the plasma default configs
environment.systemPackages = [ plasmaDefaults];
# Plasma configs should be on all users
home-manager.sharedModules = [