1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 08:28:30 +02:00

zsh: add envExtra option

This commit is contained in:
Tobias Happ 2019-07-23 21:58:06 +02:00 committed by Matthieu Coudron
parent ed0e40dee8
commit 5203340b64

View File

@ -227,6 +227,12 @@ in
description = "Extra commands that should be added to <filename>.zshrc</filename>.";
};
envExtra = mkOption {
default = "";
type = types.lines;
description = "Extra commands that should be added to <filename>.zshenv</filename>.";
};
profileExtra = mkOption {
default = "";
type = types.lines;
@ -293,6 +299,10 @@ in
};
config = mkIf cfg.enable (mkMerge [
(mkIf (cfg.envExtra != "") {
home.file."${relToDotDir ".zshenv"}".text = cfg.envExtra;
})
(mkIf (cfg.profileExtra != "") {
home.file."${relToDotDir ".zprofile"}".text = cfg.profileExtra;
})