mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-04-16 01:06:55 +00:00
feat: add dock icon magnification settings
This commit is contained in:
parent
25ae710ba3
commit
8c1c48c87a
1 changed files with 17 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue