1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-04-08 18:20:48 +00:00

Merge pull request from pik694/master

Dock icon magnification settings
This commit is contained in:
Michael Hoang 2023-07-26 09:44:43 +10:00 committed by GitHub
commit a96987cef4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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