diff options
| author | Domen Kožar <domen@dev.si> | 2022-12-16 13:06:46 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-16 13:06:46 +0000 |
| commit | 7e7498acfe3e20705f10dbf676cdd256bb8df03c (patch) | |
| tree | 3a968c1d0743c885718d606b1a53f4b3f6a9b2e8 /modules | |
| parent | 2795e05cca69bddad989186888175548f4fca33d (diff) | |
| parent | 6774344719a51d2bfb3a9132d3faec2d86a66286 (diff) | |
Merge pull request #580 from sliminality/add-24h-time
Add option to use 24-hour system time
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/system/defaults/NSGlobalDomain.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 49a2a86..0224b70 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -363,6 +363,14 @@ in { ''; }; + system.defaults.NSGlobalDomain.AppleICUForce24HourTime = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Whether to use 24-hour or 12-hour time. The default is based on region settings. + ''; + }; + system.defaults.NSGlobalDomain._HIHideMenuBar = mkOption { type = types.nullOr types.bool; default = null; |
