Skip to content

Commit

Permalink
refactor(kwin): constrain tiling padding range to 0-36 (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
HeitorAugustoLN authored Nov 24, 2024
1 parent 8e75ad9 commit 16d65cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/kwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ in

tiling = {
padding = lib.mkOption {
type = with lib.types; nullOr ints.positive;
type = with lib.types; nullOr (ints.between 0 36);
default = null;
example = 10;
description = "The padding between windows in tiling.";
Expand Down

0 comments on commit 16d65cd

Please sign in to comment.