diff options
| author | Michael Hoang <Enzime@users.noreply.github.com> | 2023-07-26 09:44:43 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-26 09:44:43 +1000 |
| commit | a96987cef41aae7f7e2ba94557a243145fa575f5 (patch) | |
| tree | cd83fd90c6f80f12ea18d4860c545f9df1ae48c3 /modules/system | |
| parent | efd35d99ce412335c478dff9da9a4256bbd39757 (diff) | |
| parent | 7ff10017ed1636d23a1ad838611fe7339c9a499f (diff) | |
Merge pull request #713 from pik694/master
Dock icon magnification settings
Diffstat (limited to 'modules/system')
| -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..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; |
