From 0a8548decc8264df30a7035a3605a1caa594613d Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 13 Mar 2024 11:48:47 -0700 Subject: [PATCH] mkDisableOption isn't a thing --- postfix.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/postfix.nix b/postfix.nix index d5e8218..022b9cd 100644 --- a/postfix.nix +++ b/postfix.nix @@ -94,7 +94,11 @@ in { }; policy-spf = { - enable = mkDisableOption "Enable Sender Policy Framework checking."; + enable = mkOption { + type = bool; + description = "Enable Sender Policy Framework checking."; + default = true; + }; extra-config = mkOption { type = str;