nix-config/home/gtk.nix
Donovan Glover 54a392bc58
gtk: Remove redundant icon declaration
Not needed with stylix.
2024-04-18 21:26:25 -04:00

25 lines
420 B
Nix

{ pkgs, ... }:
let
inherit (pkgs) fluent-icon-theme;
in
{
gtk = {
enable = true;
gtk3.extraConfig = {
gtk-decoration-layout = "menu:";
gtk-xft-antialias = 1;
gtk-xft-hinting = 1;
gtk-xft-hintstyle = "hintfull";
gtk-xft-rgba = "rgb";
gtk-recent-files-enabled = false;
};
iconTheme = {
package = fluent-icon-theme;
name = "Fluent-dark";
};
};
}