diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2026-03-01 18:56:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-01 18:56:27 +0100 |
| commit | 011486787f639f2d2474bbaf5a6ef3d77fb45a43 (patch) | |
| tree | c443f2c41053e2ed7599e9e676302dfa30dc89d4 /modules/home/zsh.nix | |
| parent | eb7c55e9dc97524cca7c5b6a268cd66af147b12e (diff) | |
| download | dotfiles-011486787f639f2d2474bbaf5a6ef3d77fb45a43.tar.gz dotfiles-011486787f639f2d2474bbaf5a6ef3d77fb45a43.zip | |
Refactor dotfiles to declarative Nix management (nix-darwin + home-manager) (#5)
Diffstat (limited to 'modules/home/zsh.nix')
| -rw-r--r-- | modules/home/zsh.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix new file mode 100644 index 0000000..b7dc9c1 --- /dev/null +++ b/modules/home/zsh.nix @@ -0,0 +1,12 @@ +{ ... }: + +{ + home.file = { + ".zshenv".source = ../../zsh/.zshenv; + ".hushlogin".source = ../../zsh/.hushlogin; + ".config/zsh/.zshrc".source = ../../zsh/.config/zsh/.zshrc; + ".config/zsh/aliases".source = ../../zsh/.config/zsh/aliases; + ".config/zsh/path".source = ../../zsh/.config/zsh/path; + ".config/zsh/extras".source = ../../zsh/.config/zsh/extras; + }; +} |
