mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
e2e8971eb3
Changes made: - Preferred "inherits" where possible - Removed unnecessary comments - Added variables to avoid duplicate strings - Reduced usage of "with x;"
30 lines
529 B
Nix
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";
|
|
};
|
|
};
|
|
}
|