Commit 55ad9ef6a188

Vincent Demeester <vincent@sbr.pm>
2025-04-18 01:23:33
home/common/shell: fix zsh files
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent ae1a615
Changed files (1)
home
common
shell
home/common/shell/zsh.nix
@@ -1,4 +1,9 @@
 { config, pkgs, ... }: {
+  home.file."${config.programs.zsh.dotDir}/completion.zsh".source = ./zsh/completion.zsh;
+  home.file."${config.programs.zsh.dotDir}/prompt.zsh".source = ./zsh/prompt.zsh;
+  home.file."${config.programs.zsh.dotDir}/functions/j".source = ./zsh/j;
+  home.file."${config.programs.zsh.dotDir}/auto-expanding-aliases.zsh".source = ./zsh/auto-expanding-aliases.zsh;
+
   home.packages = with pkgs; [
     nix-zsh-completions
   ];