1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

activity monitor: change settings to null

treewide these seem to be the only settings that aren't unset by default which seems inconsistent
This commit is contained in:
zowoq 2023-06-23 09:37:01 +10:00
parent bc346a67d3
commit fbb3ab94e6

View file

@ -7,7 +7,7 @@ with lib;
system.defaults.ActivityMonitor.ShowCategory = mkOption {
type = types.nullOr (types.enum [100 101 102 103 104 105 106 107]);
default = 100;
default = null;
description = ''
Change which processes to show.
100: All Processes
@ -54,7 +54,7 @@ with lib;
system.defaults.ActivityMonitor.OpenMainWindow = mkOption {
type = types.nullOr types.bool;
default = true;
default = null;
description = ''
Open the main window when opening Activity Monitor. Default is true.
'';