blob: bc68d97bac617d046d43c3e2eff2ed734fcae098 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, lib, pkgs, ... }: {
gtk = {
enable = true;
font = {
package = pkgs.roboto;
name = "Roboto Medium 11";
};
cursorTheme = {
name = "Numix-Cursor";
package = pkgs.numix-cursor-theme;
};
};
}
|