Changed plymouth animation and fixed hm collisions

This commit is contained in:
William 2023-12-14 10:09:01 -03:00
parent a0505df0d6
commit 4d3973d625
2 changed files with 7 additions and 1 deletions

View file

@ -5,7 +5,7 @@
plymouth = { plymouth = {
enable = true; enable = true;
themePackages = with pkgs; [ adi1090x-plymouth-themes ]; themePackages = with pkgs; [ adi1090x-plymouth-themes ];
theme = "colorful"; theme = "colorful_sliced";
}; };
initrd.systemd.enable = true; initrd.systemd.enable = true;
supportedFilesystems = [ "ntfs" ]; supportedFilesystems = [ "ntfs" ];

View file

@ -9,5 +9,11 @@
name = "breeze_cursors"; name = "breeze_cursors";
package = pkgs.breeze-icons; 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
'';
}; };
} }