From 8045e56df273b8bde5ec5aa6b16ea788451043f1 Mon Sep 17 00:00:00 2001 From: Nikita Uvarov Date: Fri, 17 Nov 2017 09:43:48 +0100 Subject: [PATCH] i3: fix config.gaps.smartBorders default value --- modules/services/window-managers/i3.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/services/window-managers/i3.nix b/modules/services/window-managers/i3.nix index c63eea67..51e0c06a 100644 --- a/modules/services/window-managers/i3.nix +++ b/modules/services/window-managers/i3.nix @@ -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; }; }; });