1
0
Fork 0
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:
Piotr Żelazko 2023-07-25 18:35:19 +02:00
parent 640331dfba
commit 7ff10017ed
No known key found for this signature in database

View file

@ -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.
'';
};