From 087d0f27ec9ba4766f44652dcafc5307d0f42482 Mon Sep 17 00:00:00 2001 From: Devyn Freet Date: Sat, 11 Jul 2026 00:09:48 -0400 Subject: [PATCH] config: re-enabled default options --- home/options.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/options.nix b/home/options.nix index 8568e24..bd1d7ad 100644 --- a/home/options.nix +++ b/home/options.nix @@ -3,7 +3,7 @@ options.shell = { 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"; }; }; }