From d604090b94771ed6fb46e55af400a481b4b3fe59 Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 2 Jun 2024 14:40:34 -0700 Subject: [PATCH] Add fudo-system option --- lib/types/host.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/types/host.nix b/lib/types/host.nix index 6cfe36c..a32f58c 100644 --- a/lib/types/host.nix +++ b/lib/types/host.nix @@ -36,12 +36,6 @@ in rec { ''; default = [ ]; }; - - world-readable = mkOption { - type = bool; - description = "Whether to leave the top level world-readable."; - default = true; - }; }; }; in { @@ -257,6 +251,13 @@ in rec { default = true; }; + fudo-system = mkOption { + type = bool; + description = + "Whether the host is a Fudo host (i.e. needs generated keys) without being a NixOS system."; + default = false; + }; + arch = mkOption { type = str; description = "System architecture of the system.";