From 4d3973d625457ab830643d0871893f12da767d50 Mon Sep 17 00:00:00 2001 From: William Date: Thu, 14 Dec 2023 10:09:01 -0300 Subject: [PATCH] Changed plymouth animation and fixed hm collisions --- hosts/desktops/common/boot.nix | 2 +- users/desktops/common/home.nix | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) 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 + ''; }; }