Nix configurations for my personal machines (Linux & macOS)
1{delib, ...}:
2delib.module {
3 name = "darwin.defaults";
4
5 options = delib.singleEnableOption true;
6
7 darwin.ifEnabled.system.defaults = {
8 NSGlobalDomain.AppleShowAllExtensions = true;
9 finder.ShowPathbar = true;
10 menuExtraClock.Show24Hour = true;
11 trackpad.Dragging = true;
12
13 # Dock settings
14 dock = {
15 autohide = false;
16 magnification = false;
17 minimize-to-application = false;
18 mru-spaces = false;
19 orientation = "bottom";
20 show-recents = false;
21 tilesize = 48;
22 };
23 };
24}