update, fmt

This commit is contained in:
Leonardo Eugênio 2025-08-06 12:57:58 -03:00
parent cc6110dcac
commit 0dcc8811bb
No known key found for this signature in database
GPG key ID: 2F8F21CE8721456B
5 changed files with 126 additions and 122 deletions

View file

@ -21,33 +21,32 @@ lib.mkIf (desktop == "sway") {
package = pkgs.bibata-cursors;
gtk.enable = true;
};
gtk =
gtk = {
enable = true;
font = {
name = font.interface;
size = font.size.small;
};
theme = {
name = gtk_theme;
package = pkgs.orchis_theme_compact;
};
iconTheme = {
name = icon_theme;
package = pkgs.papirus_red;
};
}
// (
let
shared.extraConfig = {
gtk-decoration-layout = "menu:";
};
in
{
enable = true;
font = {
name = font.interface;
size = font.size.small;
};
theme = {
name = gtk_theme;
package = pkgs.orchis_theme_compact;
};
iconTheme = {
name = icon_theme;
package = pkgs.papirus_red;
};
gtk4 = shared;
gtk3 = shared;
}
// (
let
shared.extraConfig = {
gtk-decoration-layout = "menu:";
};
in
{
gtk4 = shared;
gtk3 = shared;
}
);
);
xdg.configFile."gtk-3.0/settings.ini".force = true;
xdg.configFile."gtk-4.0/settings.ini".force = true;