1
0
Fork 0
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:
Daiderd Jordan 2018-10-11 19:29:04 +02:00 committed by GitHub
commit 9a192471bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 { system.defaults.dock.static-only = mkOption {
type = types.nullOr types.bool; type = types.nullOr types.bool;
default = null; default = null;