1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-28 17:27:28 +02:00

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 { smartBorders = mkOption {
type = types.enum [ "on" "off" "no_gaps" ]; type = types.enum [ "on" "off" "no_gaps" ];
default = null; default = "off";
description = '' description = ''
This option controls whether to disable container borders on This option controls whether to disable container borders on
workspace with a single container. workspace with a single container.
''; '';
example = true;
}; };
}; };
}); });