1
0
Fork 0
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:
Daiderd Jordan 2023-06-23 12:57:17 +02:00 committed by GitHub
commit 6460468e7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.
'';