refactor: update theming utilties to use new 26.05 config format

This commit is contained in:
Ceferino Patino 2026-05-27 23:30:43 -05:00
commit 40f2a82812
Signed by: c4patino
SSH key fingerprint: SHA256:9fQ9TsujGrdNNi76mnsu63v7dS5JOmHRZEqBOl49OR8
3 changed files with 9 additions and 5 deletions

View file

@ -29,6 +29,7 @@ in {
programs.yazi = {
enable = true;
shellWrapperName = "yy";
settings = {
log = enabled;

View file

@ -28,9 +28,9 @@ in {
};
};
programs.eww = {
enable = true;
configDir = ./config;
xdg.configFile."eww" = {
source = ./config;
recursive = true;
};
};
}

View file

@ -31,8 +31,11 @@ in {
gtk-application-prefer-dark-theme = 1;
};
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
gtk4 = {
theme = null;
extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
};
};
};