From c3d5e655277ad6700ad5a35fd554f7de53d406ae Mon Sep 17 00:00:00 2001 From: NullBite Date: Mon, 4 Mar 2024 21:13:29 -0500 Subject: [PATCH] Add home-manager options arg to an option good for repl stuff --- home/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/default.nix b/home/default.nix index 87565f5..6f3027e 100644 --- a/home/default.nix +++ b/home/default.nix @@ -13,6 +13,11 @@ in ]; config = {}; options.nixfiles = { + options = lib.mkOption { + description = "home-manager options attrset for repl"; + default = options; + readOnly = true; + }; meta.standalone = lib.mkOption { default = isStandalone; description = "Whether or not the home-manager installation is standalone (standalone installations don't have access to osConfig).";