From 4cfb4b084eb38290b0514b53256cf2c8fc2d6616 Mon Sep 17 00:00:00 2001 From: Andrew Childs Date: Thu, 11 Oct 2018 11:58:08 +0900 Subject: [PATCH] system.defaults.dock: add `show-recents` option --- modules/system/defaults/dock.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/system/defaults/dock.nix b/modules/system/defaults/dock.nix index 378d703f..54c442fe 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;