From 368f092bd3e04f3e074b0e19b34ddae8e5cf2f97 Mon Sep 17 00:00:00 2001 From: Devyn Freet Date: Fri, 10 Jul 2026 23:48:13 -0400 Subject: [PATCH] config: disabled default options for name and email to require setting --- home/options.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/options.nix b/home/options.nix index 7381ea1..6489064 100644 --- a/home/options.nix +++ b/home/options.nix @@ -3,7 +3,7 @@ options = { name = lib.mkOption { type = lib.types.str; - default = "nyx"; + #default = "nyx"; }; homeDirectory = lib.mkOption { type = lib.types.path; @@ -11,7 +11,7 @@ }; email = lib.mkOption { type = lib.types.str; - default = "${config.name}@configureme.guv"; + #default = "${config.name}@configureme.guv"; }; }; }