forked from Frost-Phoenix/nixos-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgtk.nix
40 lines (37 loc) · 752 Bytes
/
gtk.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ pkgs, ... }:
{
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
nerd-fonts.jetbrains-mono
nerd-fonts.noto
twemoji-color-font
noto-fonts-emoji
gruvbox-dark-icons-gtk
];
home.pointerCursor = {
gtk.enable = true;
package = pkgs.nordzy-cursor-theme;
name = "Nordzy-cursors";
size = 22;
};
gtk = {
enable = true;
font = {
name = "SN Pro";
size = 11;
};
iconTheme = {
name = "Gruvbox-Plus-Dark";
package = pkgs.gruvbox-plus-icons;
};
theme = {
name = "gruvbox-dark";
package = pkgs.gruvbox-dark-gtk;
};
cursorTheme = {
name = "Nordzy-cursors";
package = pkgs.nordzy-cursor-theme;
size = 22;
};
};
}