From c55dcbc07a4b4f931781f7fa1e164a2aee44cfeb Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 31 Mar 2025 09:20:22 +0100 Subject: [PATCH] Move zsh.nix --- modules/home-manager/cli/default.nix | 2 +- modules/home-manager/cli/{zsh.nix => zsh/default.nix} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename modules/home-manager/cli/{zsh.nix => zsh/default.nix} (94%) diff --git a/modules/home-manager/cli/default.nix b/modules/home-manager/cli/default.nix index 1b911633..c1696007 100644 --- a/modules/home-manager/cli/default.nix +++ b/modules/home-manager/cli/default.nix @@ -14,6 +14,6 @@ ./starship.nix ./tmux.nix ./tmux-sessionizer.nix - ./zsh.nix + ./zsh ]; } diff --git a/modules/home-manager/cli/zsh.nix b/modules/home-manager/cli/zsh/default.nix similarity index 94% rename from modules/home-manager/cli/zsh.nix rename to modules/home-manager/cli/zsh/default.nix index ef317117..7f77f5c3 100644 --- a/modules/home-manager/cli/zsh.nix +++ b/modules/home-manager/cli/zsh/default.nix @@ -9,12 +9,12 @@ zsh-abbr = { enable = true; - abbreviations = import ./zsh/abbreviations.nix; + abbreviations = import ./abbreviations.nix; }; dotDir = ".config/zsh"; - shellAliases = (import ./zsh/aliases.nix { inherit config; }); + shellAliases = (import ./aliases.nix { inherit config; }); localVariables = { ABBR_SET_EXPANSION_CURSOR = 1;