From 16d65cd02b5de665d1bcfec1616c02c71a1014a6 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Sun, 24 Nov 2024 13:28:18 -0300 Subject: [PATCH] refactor(kwin): constrain tiling padding range to 0-36 (#422) --- modules/kwin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kwin.nix b/modules/kwin.nix index 2a16705d..dde2f4bc 100644 --- a/modules/kwin.nix +++ b/modules/kwin.nix @@ -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.";