Attempt for fix gtk2rc overriding

This commit is contained in:
Tyler Beckman 2024-11-29 15:39:02 -07:00
parent c3126c57e4
commit e5c8cb4d5c
Signed by: Ty
GPG key ID: 2813440C772555A4
2 changed files with 5 additions and 1 deletions

View file

@ -7,6 +7,7 @@
inherit inputs;
inherit system;
};
home-manager.backupFileExtension = "backup";
home-manager.users.ty = {
imports = [

View file

@ -1,8 +1,11 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
{
gtk = {
enable = true;
# The other file gets overwritten, so change the path
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
theme = {
name = "Breeze-Dark";
package = pkgs.kdePackages.breeze-gtk;