added aliases and env vars to home manager module

This commit is contained in:
2026-02-19 18:02:58 -05:00
parent 934c41714a
commit 617a3e17a8

View File

@@ -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;