summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorAndrew Childs <lorne@cons.org.nz>2018-10-11 11:58:08 +0900
committerAndrew Childs <lorne@cons.org.nz>2018-10-11 11:58:17 +0900
commit4cfb4b084eb38290b0514b53256cf2c8fc2d6616 (patch)
tree09aac06ef99b7d2930d13dcc6451a11eccf6ffe7 /modules/system
parent81068e51e902e4e5964ffc9c8c170647e1f5ee5a (diff)
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;