diff --git a/hosts/desktops/common/boot.nix b/hosts/desktops/common/boot.nix index cd65445..e0d2249 100644 --- a/hosts/desktops/common/boot.nix +++ b/hosts/desktops/common/boot.nix @@ -5,7 +5,7 @@ plymouth = { enable = true; themePackages = with pkgs; [ adi1090x-plymouth-themes ]; - theme = "colorful"; + theme = "colorful_sliced"; }; initrd.systemd.enable = true; supportedFilesystems = [ "ntfs" ]; diff --git a/users/desktops/common/home.nix b/users/desktops/common/home.nix index ee17465..ec15243 100644 --- a/users/desktops/common/home.nix +++ b/users/desktops/common/home.nix @@ -9,5 +9,11 @@ name = "breeze_cursors"; package = pkgs.breeze-icons; }; + activation.removeExistingGtk = + lib.hm.dag.entryBefore [ "checkLinkTargets" ] '' + rm -rf ~/.gtkrc-2.0 + rm -rf ~/.config/gtk-3.0 + rm -rf ~/.config/gtk-4.0 + ''; }; }