1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

Merge pull request #206 from pjan/pjan/CreateDesktop

Adds com.apple.finder CreateDesktop defaults to enable/disable desktop
This commit is contained in:
Daiderd Jordan 2020-06-03 20:33:03 +02:00 committed by GitHub
commit 1b71f9f21c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;