-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsystem.nix
More file actions
43 lines (39 loc) · 979 Bytes
/
system.nix
File metadata and controls
43 lines (39 loc) · 979 Bytes
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
{vars, ...}: {
system = {
stateVersion = 4;
primaryUser = vars.name;
defaults = {
dock = {
autohide = true;
show-recents = false;
persistent-apps = [];
tilesize = 48;
# lock when cursor is moved to bottom left
wvous-bl-corner = 13;
};
controlcenter.BatteryShowPercentage = true;
hitoolbox.AppleFnUsageType = "Show Emoji & Symbols";
NSGlobalDomain = {
AppleInterfaceStyle = "Dark";
_HIHideMenuBar = true;
"com.apple.trackpad.scaling" = 3.0;
KeyRepeat = 2;
InitialKeyRepeat = 15;
AppleMetricUnits = 1;
AppleMeasurementUnits = "Centimeters";
AppleICUForce24HourTime = true;
};
menuExtraClock = {
Show24Hour = true;
ShowSeconds = true;
};
};
keyboard = {
enableKeyMapping = true;
remapCapsLockToEscape = true;
};
};
# TODO
# - wallpaper
# - display scale
}