nixos/xserver: Use null as default for dpi option
Commit 98d9bba
introduced this option as a nullOr type and it actually
checks whether null has been set and only appends -dpi if that's the
case. So let's actually set the default to null instead of 0.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
9a55b76db1
commit
c1178f171c
|
@ -221,7 +221,7 @@ in
|
||||||
|
|
||||||
dpi = mkOption {
|
dpi = mkOption {
|
||||||
type = types.nullOr types.int;
|
type = types.nullOr types.int;
|
||||||
default = 0;
|
default = null;
|
||||||
description = "DPI resolution to use for X server.";
|
description = "DPI resolution to use for X server.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue