From 0d08f9c6db1e43878966f81a981e2e6c07655c89 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 17 Jul 2021 13:41:15 +0200 Subject: [PATCH] zsh: Reorganise directory layout --- users/simon/modules/default.nix | 2 +- users/simon/modules/{zsh.nix => zsh/default.nix} | 2 +- users/simon/{files => modules}/zsh/pass-wrappers.zsh | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename users/simon/modules/{zsh.nix => zsh/default.nix} (98%) rename users/simon/{files => modules}/zsh/pass-wrappers.zsh (100%) diff --git a/users/simon/modules/default.nix b/users/simon/modules/default.nix index 7799cd3..8aadd4b 100644 --- a/users/simon/modules/default.nix +++ b/users/simon/modules/default.nix @@ -23,6 +23,6 @@ ./youtube-dl.nix ./ytcc.nix ./zathura.nix - ./zsh.nix + ./zsh ]; } diff --git a/users/simon/modules/zsh.nix b/users/simon/modules/zsh/default.nix similarity index 98% rename from users/simon/modules/zsh.nix rename to users/simon/modules/zsh/default.nix index b69ab34..465ed6d 100644 --- a/users/simon/modules/zsh.nix +++ b/users/simon/modules/zsh/default.nix @@ -84,7 +84,7 @@ in source ${pkgs.zsh-fast-syntax-highlighting}/share/zsh/site-functions/fast-syntax-highlighting.plugin.zsh FAST_HIGHLIGHT_STYLES[comment]=fg=010 - source ${../files/zsh/pass-wrappers.zsh} + source ${./pass-wrappers.zsh} '') ]; }; diff --git a/users/simon/files/zsh/pass-wrappers.zsh b/users/simon/modules/zsh/pass-wrappers.zsh similarity index 100% rename from users/simon/files/zsh/pass-wrappers.zsh rename to users/simon/modules/zsh/pass-wrappers.zsh