From c82b7dea1148989faa9fea82868215caf82b745a Mon Sep 17 00:00:00 2001 From: ChaotiCryptidz Date: Tue, 22 Feb 2022 14:20:46 +0000 Subject: [PATCH] add more options --- hm-module.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/hm-module.nix b/hm-module.nix index 3ed0dee..c2bdf77 100644 --- a/hm-module.nix +++ b/hm-module.nix @@ -17,10 +17,18 @@ in { }; settings = { - logLevel = mkOption { + log_level = mkOption { type = types.str; default = "info"; }; + cache = mkOption { + type = types.bool; + default = false; + }; + cache_dir = mkOption { + type = types.str; + default = "source_dir"; + }; }; }; };