summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJan Schmitt <git@smittie.de>2022-08-20 17:32:11 +0200
committerJan Schmitt <git@smittie.de>2022-08-20 22:48:59 +0200
commitfbca12e524fc8bae0dffbcd97fe2be196a9a3e8c (patch)
tree9c92252ce5bf2b38a5d2b96ac10d3b1cd7ce1479 /modules
parent80871c71edb3da76d40bdff9cae007a2a035c074 (diff)
feat: provide option to display the appswitcher on all displays
Diffstat (limited to 'modules')
-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 3e56fae..3156e90 100644
--- a/modules/system/defaults/dock.nix
+++ b/modules/system/defaults/dock.nix
@@ -15,6 +15,14 @@ let
in {
options = {
+ system.defaults.dock.appswitcher-all-displays = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Whether to display the appswitcher on all displays or only the main one. The default is false.
+ '';
+ };
+
system.defaults.dock.autohide = mkOption {
type = types.nullOr types.bool;
default = null;