fix: NixOS module: allow passing bool in services.headplane.settings.*

This commit is contained in:
Igor Ramazanov 2025-03-11 20:16:04 +00:00
parent a9b0ca3464
commit 12592936f1

View File

@ -19,7 +19,7 @@ in {
package = mkPackageOption pkgs "headplane" {};
settings = mkOption {
type = with types; attrsOf (oneOf [str int]);
type = with types; attrsOf (oneOf [str int bool]);
default = {};
};