summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-10-11 19:29:04 +0200
committerGitHub <noreply@github.com>2018-10-11 19:29:04 +0200
commit9a192471bbb58a37b8dbb683bfb7a4a19088bc8e (patch)
treee4a3316e87cd4a97d1b31b7bca1a022a87913a3e /modules/system
parent166560ca767e98b6f2f3b23a2f4dadb9f849a532 (diff)
parent4cfb4b084eb38290b0514b53256cf2c8fc2d6616 (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.nix8
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;