1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 02:37:09 +00:00

Adds com.apple.finder CreateDesktop defaults to enable/disable desktop

This commit is contained in:
pjan vandaele 2020-06-03 17:39:58 +08:00
parent eace013f6b
commit e7e49119bb

View file

@ -13,6 +13,14 @@ with lib;
'';
};
system.defaults.finder.CreateDesktop = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Whether to show icons on the desktop or not. The default is true.
'';
};
system.defaults.finder.QuitMenuItem = mkOption {
type = types.nullOr types.bool;
default = null;