From 9f7d46a5363423c7de42b56c248ba39faac3e61c Mon Sep 17 00:00:00 2001 From: lassulus Date: Tue, 12 Nov 2024 15:56:11 +0100 Subject: [PATCH] core vars: remove default for dirs --- nixosModules/clanCore/vars/settings-opts.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixosModules/clanCore/vars/settings-opts.nix b/nixosModules/clanCore/vars/settings-opts.nix index fce8bc693..b94894c2c 100644 --- a/nixosModules/clanCore/vars/settings-opts.nix +++ b/nixosModules/clanCore/vars/settings-opts.nix @@ -23,10 +23,10 @@ }; secretUploadDirectory = lib.mkOption { - type = lib.types.nullOr lib.types.path; - default = null; + type = lib.types.path; description = '' The directory where secrets are uploaded into, This is backend specific. + This is usally set by the secret store backend. ''; }; @@ -63,10 +63,10 @@ }; publicDirectory = lib.mkOption { - type = lib.types.nullOr lib.types.path; - default = null; + type = lib.types.path; description = '' The directory where public facts are stored. + This is usally set by the public store backend. ''; }; }