1
0
Fork 0
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:
Piotr Żelazko 2022-12-18 23:50:26 +01:00
parent 25ae710ba3
commit 8c1c48c87a
No known key found for this signature in database

View file

@ -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;