mirror of
https://github.com/nix-community/home-manager
synced 2024-11-16 16:19:44 +01:00
i3: fix config.gaps.smartBorders default value
This commit is contained in:
parent
206a4e17b5
commit
8045e56df2
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue