diff options
| author | Piotr Żelazko <piotr.zelazko@icloud.com> | 2022-12-18 23:50:26 +0100 |
|---|---|---|
| committer | Piotr Żelazko <piotr.zelazko@icloud.com> | 2023-06-27 16:44:16 +0200 |
| commit | 8c1c48c87ae1685710da0dd2b6e85f558b5cdef1 (patch) | |
| tree | 1934409436c0646510e675794c9ac95720122fc5 /modules | |
| parent | 25ae710ba3cd448c5d5678788d37f3d149378bc0 (diff) | |
feat: add dock icon magnification settings
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/system/defaults/dock.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/system/defaults/dock.nix b/modules/system/defaults/dock.nix index 34fc857..5a971b5 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 = false; + description = lib.mdDoc '' + Magnify icon on hover. The default is false. + ''; + }; + + system.defaults.dock.largesize = mkOption { + type = types.nullOr types.int; + default = null; + description = lib.mdDoc '' + Hover maginified icon size. The default is null. + ''; + }; + + system.defaults.dock.wvous-tl-corner = mkOption { type = types.nullOr types.ints.positive; default = null; |
