My system's Nix flake
1{ config, pkgs, ... }: {
2 system = {
3 primaryUser = "alces";
4 defaults = {
5 WindowManager.EnableTiledWindowMargins = false;
6 dock = {
7 mineffect = "suck";
8 orientation = "left";
9 showAppExposeGestureEnabled = true;
10 showDesktopGestureEnabled = true;
11 showLaunchpadGestureEnabled = true;
12 showMissionControlGestureEnabled = true;
13 };
14 controlcenter = {
15 BatteryShowPercentage = true;
16 };
17 };
18
19 stateVersion = 6;
20 };
21}