mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
chore: apply CR suggestions
This commit is contained in:
parent
640331dfba
commit
7ff10017ed
1 changed files with 3 additions and 4 deletions
|
@ -165,18 +165,17 @@ in {
|
|||
|
||||
system.defaults.dock.magnification = mkOption {
|
||||
type = types.nullOr types.bool;
|
||||
default = false;
|
||||
default = null;
|
||||
description = lib.mdDoc ''
|
||||
Magnify icon on hover. The default is false.
|
||||
'';
|
||||
};
|
||||
|
||||
system.defaults.dock.largesize = mkOption {
|
||||
type = types.nullOr types.int;
|
||||
type = types.nullOr (types.ints.between 16 128);
|
||||
default = null;
|
||||
description = lib.mdDoc ''
|
||||
Hover maginified icon size. The default is null.
|
||||
Valid values can range from 16 up to 128.
|
||||
Magnified icon size on hover. The default is 16.
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue