enable gtk

This commit is contained in:
2023-08-06 09:17:38 +02:00
parent 683bd41f4f
commit dfbab59b45
8 changed files with 474 additions and 332 deletions

21
home/gtk.nix Normal file
View File

@@ -0,0 +1,21 @@
{ pkgs, ... }: {
gtk = {
enable = true;
cursorTheme = {
package = pkgs.phinger-cursor;
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-enable = false;
};
iconTheme = {
package = pkgs.fluent-icon-theme;
name = "Fluent-dark";
};
};
}