From 12592936f14ce015d8680d5d64dd01da67db9dbd Mon Sep 17 00:00:00 2001 From: Igor Ramazanov Date: Tue, 11 Mar 2025 20:16:04 +0000 Subject: [PATCH] fix: NixOS module: allow passing `bool` in `services.headplane.settings.*` --- nix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index 32ecd53..9343561 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -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 = {}; };