blob: 9b03cf4b3a85472500fa703e4a78dd6968b82ba1 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
{ config, pkgs, ... }:
{ services.xserver = {
enable = true;
enableCtrlAltBackspace = true;
exportConfiguration = true;
};
services.dbus.socketActivated = true;
environment.sessionVariables = {
XCURSOR_PATH = [
"${config.system.path}/share/icons"
"$HOME/.icons"
"$HOME/.nix-profile/share/icons/"
];
};
environment.systemPackages = with pkgs; [
xorg.xmodmap
xorg.xinit
xorg.xev
xorg.xdpyinfo
xclip
xfontsel
vanilla-dmz
hicolor_icon_theme
adapta-gtk-theme
flat-plat
paper-gtk-theme
paper-icon-theme
arc-icon-theme
tango-icon-theme
gtk-engine-murrine
gtk_engines
];
fonts = {
enableFontDir = true;
enableDefaultFonts = true;
fontconfig = {
defaultFonts = {
monospace = [ "Liberation Mono" ];
sansSerif = [ "Liberation Sans" ];
serif = [ "Liberation Serif" ];
};
ultimate = {
enable = true;
# presets:
# ultimate1 ultimate2 ultimate3 ultimate4 ultimate5 osx windowsxp
preset = "ultimate3";
};
};
fonts = with pkgs; [
cantarell_fonts
carlito
dejavu_fonts
fantasque-sans-mono
fira
fira-code
fira-mono
font-droid
font-awesome-ttf
hack-font
liberation_ttf
mononoki
opensans-ttf
paratype-pt-mono
paratype-pt-sans
paratype-pt-serif
roboto
roboto-mono
source-code-pro
source-sans-pro
source-serif-pro
terminus_font
xorg.fontxfree86type1
];
};
}
|