mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-04-08 18:20:48 +00:00
Merge pull request #713 from pik694/master
Dock icon magnification settings
This commit is contained in:
commit
a96987cef4
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 = 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;
|
||||
|
|
Loading…
Add table
Reference in a new issue