diff --git a/nix/home-manager/modules/files.nix b/nix/home-manager/modules/files.nix index f259c18..874ae75 100644 --- a/nix/home-manager/modules/files.nix +++ b/nix/home-manager/modules/files.nix @@ -7,6 +7,13 @@ repo_root = "../../.."; in { home.file = { + "/.zsh.d/" = { + source = ./${repo_root}/zsh/funcs; + }; + "/.cache/zsh/completions/.keep" = { + text = ""; + recursive = true; + }; "bin/git-sync".source = ./${repo_root}/git-sync; ".cargo/config.toml".source = pkgs.substituteAll { src = ./${repo_root}/cargo/config.toml.nixtemplate;