diff --git a/roles/kde/plasma.nix b/roles/kde/plasma.nix index 13d1156..7817573 100644 --- a/roles/kde/plasma.nix +++ b/roles/kde/plasma.nix @@ -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 = [