From 8e0d021f934cea111891918361cbc7b572796eeb Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Wed, 2 Oct 2024 07:45:21 -0500 Subject: [PATCH] dev: make the zshrc file non-hidden --- nix/base-system/flake.nix | 2 +- nix/base-system/{.zshrc => zshrc} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename nix/base-system/{.zshrc => zshrc} (100%) diff --git a/nix/base-system/flake.nix b/nix/base-system/flake.nix index 922a886..b43c429 100644 --- a/nix/base-system/flake.nix +++ b/nix/base-system/flake.nix @@ -276,7 +276,7 @@ EOF"; enable = true; # default shell on catalina # This is a total hack but we don't want the default clobbering it which it does if it's an empty string or null promptInit = "#noop"; - interactiveShellInit = (builtins.readFile ./.zshrc); + interactiveShellInit = (builtins.readFile ./zshrc); }; tmux = { diff --git a/nix/base-system/.zshrc b/nix/base-system/zshrc similarity index 100% rename from nix/base-system/.zshrc rename to nix/base-system/zshrc