diff --git a/nix/hm-module.nix b/nix/hm-module.nix index dcde1b0..4541cfd 100644 --- a/nix/hm-module.nix +++ b/nix/hm-module.nix @@ -15,6 +15,18 @@ in description = "The fern package to use"; }; + aliases = lib.mkOption { + type = lib.types.attrsOf lib.types.str; + default = {}; + description = "The command name to use for the fern shell"; + }; + + environmentVars = lib.mkOption { + type = lib.types.attrsOf lib.types.str; + default = {}; + description = "Environment variables to set when fern starts"; + }; + settings = { dotGlob = lib.mkOption { type = lib.types.bool;