mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
Merge pull request #108 from thefloweringash/dock-show-recents
system.defaults.dock: add `show-recents` option
This commit is contained in:
commit
9a192471bb
1 changed files with 8 additions and 0 deletions
|
@ -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 {
|
system.defaults.dock.static-only = mkOption {
|
||||||
type = types.nullOr types.bool;
|
type = types.nullOr types.bool;
|
||||||
default = null;
|
default = null;
|
||||||
|
|
Loading…
Reference in a new issue