diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2018-10-11 19:29:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-11 19:29:04 +0200 |
| commit | 9a192471bbb58a37b8dbb683bfb7a4a19088bc8e (patch) | |
| tree | e4a3316e87cd4a97d1b31b7bca1a022a87913a3e /modules/system | |
| parent | 166560ca767e98b6f2f3b23a2f4dadb9f849a532 (diff) | |
| parent | 4cfb4b084eb38290b0514b53256cf2c8fc2d6616 (diff) | |
Merge pull request #108 from thefloweringash/dock-show-recents
system.defaults.dock: add `show-recents` option
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/defaults/dock.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/dock.nix b/modules/system/defaults/dock.nix index 378d703..54c442f 100644 --- a/modules/system/defaults/dock.nix +++ b/modules/system/defaults/dock.nix @@ -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; |
