i3: fix config.gaps.smartBorders default value

This commit is contained in:
Nikita Uvarov 2017-11-17 09:43:48 +01:00
parent 206a4e17b5
commit 8045e56df2
No known key found for this signature in database
GPG key ID: F7A5FB3A7C10EF96

View file

@ -433,12 +433,11 @@ let
smartBorders = mkOption {
type = types.enum [ "on" "off" "no_gaps" ];
default = null;
default = "off";
description = ''
This option controls whether to disable container borders on
workspace with a single container.
'';
example = true;
};
};
});