nix-config/home/gtk.nix
Donovan Glover e2e8971eb3
chore: Simplify variable usage
Changes made:

- Preferred "inherits" where possible
- Removed unnecessary comments
- Added variables to avoid duplicate strings
- Reduced usage of "with x;"
2024-04-05 13:30:39 -04:00

30 lines
529 B
Nix

{ pkgs, ... }:
let
inherit (pkgs) phinger-cursors fluent-icon-theme;
in
{
gtk = {
enable = true;
cursorTheme = {
package = phinger-cursors;
name = "phinger-cursors";
};
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";
};
};
}