diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2020-06-03 20:33:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-03 20:33:03 +0200 |
| commit | 1b71f9f21c2e058292ef0d71d65d8655252f02c1 (patch) | |
| tree | 22788591bccfd5fb11897e72aea4b64a15c65f55 /modules/system | |
| parent | eace013f6b0b8e20d1b6210aa776ca40408ae1dc (diff) | |
| parent | e7e49119bb0e3b45eb9ef2a13d909a92587f4300 (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.nix | 8 |
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; |
