diff --git a/nix/home.nix b/nix/home.nix index a1259f2..8942e64 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -1,13 +1,17 @@ { pkgs, ... }: { home = { stateVersion = "24.05"; + programs = { + zsh = { + enable = true; + }; + }; packages = with pkgs; [ neovim fzf bat git yazi - zsh tmux eza curl @@ -17,5 +21,8 @@ jq starship ]; + file = { + ".zshrc".source = zsh/.zshrc; + }; }; } diff --git a/home/.zshrc b/zsh/.zshrc similarity index 100% rename from home/.zshrc rename to zsh/.zshrc