Skip to content

Commit

Permalink
zsh: Track .zprofile, .zlogin & .zlogout in hm
Browse files Browse the repository at this point in the history
Without this, the user may have accidentally created these files
manually, interferring with HM-managed zsh configuration.
  • Loading branch information
srid committed Feb 4, 2025
1 parent 52f35ba commit eb6678a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion modules/home/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,16 @@
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
envExtra = ''
# Custom zshrc goes here
# Custom ~/.zshenv goes here
'';
profileExtra = ''
# Custom ~/.zprofile goes here
'';
loginExtra = ''
# Custom ~/.zlogin goes here
'';
logoutExtra = ''
# Custom ~/.zlogout goes here
'';
};

Expand Down

0 comments on commit eb6678a

Please sign in to comment.