blob: 1b4b99b19dfeffd01fbe1aefdc1840950b28e276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{ config, lib, ... }:
with lib;
{
options = {
system.defaults.CustomUserPreferences = mkOption {
type = types.attrs;
default = { };
example = {
"NSGlobalDomain" = { "TISRomanSwitchState" = 1; };
"com.apple.Safari" = {
"com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled" =
true;
};
};
description = ''
Sets custom user preferences
'';
};
system.defaults.CustomSystemPreferences = mkOption {
type = types.attrs;
default = { };
example = {
"NSGlobalDomain" = { "TISRomanSwitchState" = 1; };
"com.apple.Safari" = {
"com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled" =
true;
};
};
description = ''
Sets custom system preferences
'';
};
};
}
|