From 011486787f639f2d2474bbaf5a6ef3d77fb45a43 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Mar 2026 18:56:27 +0100 Subject: Refactor dotfiles to declarative Nix management (nix-darwin + home-manager) (#5) --- modules/home/zsh.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/home/zsh.nix (limited to 'modules/home/zsh.nix') 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; + }; +} -- cgit v1.2.3