Add system.defaults.NSGlobalDomain.AppleIconAppearanceTheme
This commit is contained in:
parent
ebd0bfc11f
commit
3c7396a09c
1 changed files with 13 additions and 0 deletions
|
|
@ -52,6 +52,19 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.defaults.NSGlobalDomain.AppleIconAppearanceTheme = mkOption {
|
||||||
|
type = types.nullOr (types.enum [ "DarkRegular" "DarkAutomatic" "ClearLight" "Clear Dark" "Clear Automatic" "TintedLight" "TintedDark" "TintedAutomatic" ]);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
Set icon and widget style
|
||||||
|
|
||||||
|
To set to default mode, set this to `null` and you'll need to manually run
|
||||||
|
{command}`defaults delete -g AppleIconAppearanceTheme`.
|
||||||
|
|
||||||
|
This option requires logging out and logging back in to apply.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
system.defaults.NSGlobalDomain.AppleInterfaceStyleSwitchesAutomatically = mkOption {
|
system.defaults.NSGlobalDomain.AppleInterfaceStyleSwitchesAutomatically = mkOption {
|
||||||
type = types.nullOr types.bool;
|
type = types.nullOr types.bool;
|
||||||
default = null;
|
default = null;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue