Add support for Dock icon size

Signed-off-by: Andy Dirnberger <andy@dirnberger.me>
This commit is contained in:
Andy Dirnberger 2017-06-25 16:38:48 -04:00
parent 54244e0bb0
commit ad4acf558f
No known key found for this signature in database
GPG key ID: 9B00CE61264DD8DB

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;