Fix gtk2 overwrite possibly

This commit is contained in:
Tyler Beckman 2024-12-04 13:44:33 -07:00
parent cf5f661546
commit e0df2bd04f
Signed by: Ty
GPG key ID: 2813440C772555A4

View file

@ -3,7 +3,6 @@
gtk = {
enable = true;
# The other file gets overwritten, so change the path
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
theme = {
@ -20,4 +19,7 @@
package = (pkgs.callPackage ../../packages/beautyline {});
};
};
# Tell home-manager to force overwrite the gtk2 configuration as it keeps getting overwritten by something (likely plasma)
home.file.${config.gtk.gtk2.configLocation}.force = true;
}