1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

system.defaults.dock: add show-recents option

This commit is contained in:
Andrew Childs 2018-10-11 11:58:08 +09:00
parent 81068e51e9
commit 4cfb4b084e

View file

@ -138,6 +138,14 @@ in {
'';
};
system.defaults.dock.show-recents = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Show recent applications in the dock. The default is true.
'';
};
system.defaults.dock.static-only = mkOption {
type = types.nullOr types.bool;
default = null;