From cd259fc7e8c2750ae4740c51fc864760b28715dd Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Mon, 26 Aug 2024 23:41:50 +0000 Subject: [PATCH] options: set default for sshHostPublicKey to null to fix secrix correctly detecting viable systems --- nix/nixos-modules/options.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/nixos-modules/options.nix b/nix/nixos-modules/options.nix index 2aebd63..699d3d0 100644 --- a/nix/nixos-modules/options.nix +++ b/nix/nixos-modules/options.nix @@ -21,6 +21,7 @@ This is used by other option{x-banananetwork} modules. ''; type = with lib.types; nullOr str; + default = null; example = "ssh-ed25519 …"; };