From e9172fe731d9882ce0f0730c8c4e152ac86645cc Mon Sep 17 00:00:00 2001 From: Colin Date: Sat, 28 Jan 2023 10:55:17 +0000 Subject: [PATCH] zsh: add an empty .zshrc to shutup prezto --- hosts/common/home/zsh/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/common/home/zsh/default.nix b/hosts/common/home/zsh/default.nix index 0e55b658..01b855ec 100644 --- a/hosts/common/home/zsh/default.nix +++ b/hosts/common/home/zsh/default.nix @@ -36,6 +36,8 @@ lib.mkIf config.sane.home-manager.enable ".cache/gitstatus" ]; + # zsh/prezto complains if zshrc doesn't exist; but it does allow an "empty" file. + sane.fs."/home/colin/.config/zsh/.zshrc" = sane-lib.fs.wantedText "# "; programs.zsh = { enable = true;