summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/defaults/dock.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/system/defaults/dock.nix b/modules/system/defaults/dock.nix
index 34fc857..7fda0da 100644
--- a/modules/system/defaults/dock.nix
+++ b/modules/system/defaults/dock.nix
@@ -163,6 +163,23 @@ in {
'';
};
+ system.defaults.dock.magnification = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = lib.mdDoc ''
+ Magnify icon on hover. The default is false.
+ '';
+ };
+
+ system.defaults.dock.largesize = mkOption {
+ type = types.nullOr (types.ints.between 16 128);
+ default = null;
+ description = lib.mdDoc ''
+ Magnified icon size on hover. The default is 16.
+ '';
+ };
+
+
system.defaults.dock.wvous-tl-corner = mkOption {
type = types.nullOr types.ints.positive;
default = null;