diff options
| author | zowoq <59103226+zowoq@users.noreply.github.com> | 2023-06-23 09:37:01 +1000 |
|---|---|---|
| committer | zowoq <59103226+zowoq@users.noreply.github.com> | 2023-06-23 20:29:46 +1000 |
| commit | fbb3ab94e67bab73e721d5bbbcc6b05b0cf60f2f (patch) | |
| tree | 3068c27ce1ba6b683966d0e15a21f3c0d37d02c3 /modules | |
| parent | bc346a67d34a336ca3c507570875cc88038e6120 (diff) | |
activity monitor: change settings to null
treewide these seem to be the only settings that aren't unset by default which seems inconsistent
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/system/defaults/ActivityMonitor.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/defaults/ActivityMonitor.nix b/modules/system/defaults/ActivityMonitor.nix index 2f2f2d4..d57c6c0 100644 --- a/modules/system/defaults/ActivityMonitor.nix +++ b/modules/system/defaults/ActivityMonitor.nix @@ -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. ''; |
