diff --git a/home.nix b/home.nix index 4c468c2..b1024fa 100644 --- a/home.nix +++ b/home.nix @@ -26,9 +26,7 @@ in # Let Home Manager install and manage itself. programs.home-manager.enable = true; - programs.starship = { - enable = true; - }; + programs.starship.enable = true; home.packages = with pkgs; [ vim xclip neofetch tmux @@ -63,7 +61,6 @@ in enable = true; theme = "robbyrussell"; }; - shellInit = builtins.readFile ./dotfiles/zshrc; }; home.file = { @@ -78,6 +75,7 @@ in "cwm.sh".source = ./dotfiles/cwm.sh; ".xinitrc".source = ./dotfiles/xinitrc; ".tmux.conf".source = ./dotfiles/tmux.conf; + ".zshrc".source = ./dotfiles/zshrc; }; }; }