mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-05 08:17:01 +00:00
Merge pull request #706 from qowoz/defaults
activity monitor: change settings to null
This commit is contained in:
commit
6460468e7a
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
'';
|
||||
|
|
Loading…
Add table
Reference in a new issue