summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2020-06-03 20:33:03 +0200
committerGitHub <noreply@github.com>2020-06-03 20:33:03 +0200
commit1b71f9f21c2e058292ef0d71d65d8655252f02c1 (patch)
tree22788591bccfd5fb11897e72aea4b64a15c65f55 /modules/system
parenteace013f6b0b8e20d1b6210aa776ca40408ae1dc (diff)
parente7e49119bb0e3b45eb9ef2a13d909a92587f4300 (diff)
Merge pull request #206 from pjan/pjan/CreateDesktop
Adds com.apple.finder CreateDesktop defaults to enable/disable desktop
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/defaults/finder.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/finder.nix b/modules/system/defaults/finder.nix
index 821de8c..91e100a 100644
--- a/modules/system/defaults/finder.nix
+++ b/modules/system/defaults/finder.nix
@@ -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;