1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 02:37:09 +00:00

Merge pull request #33 from dirn/dock-icon-size

Add support for Dock icon size
This commit is contained in:
Daiderd Jordan 2017-06-25 23:03:21 +02:00 committed by GitHub
commit 540ccf431d

View file

@ -29,6 +29,14 @@ with lib;
'';
};
system.defaults.dock.tilesize = mkOption {
type = types.nullOr types.int;
default = null;
description = ''
Size of the icons in the dock. The default is 64.
'';
};
system.defaults.dock.minimize-to-application = mkOption {
type = types.nullOr types.bool;
default = null;