From 99be54d65713ac9dd691ddd92a5064a5f7245ca6 Mon Sep 17 00:00:00 2001 From: Oshgnacknak Date: Sat, 6 Sep 2025 23:36:29 +0200 Subject: [PATCH] flake --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 25e48a6..e095719 100644 --- a/flake.nix +++ b/flake.nix @@ -48,7 +48,10 @@ syntaxHighlighting.enable = true; initExtra = '' - [ -f "$HOME/.bashrc" ] && emulate sh -c "source $HOME/.bashrc" + source ${pkgs.fzf}/share/fzf/key-bindings.zsh + source ${pkgs.fzf}/share/fzf/completion.zsh + + [ -f "$HOME/.zshrc" ] && emulate sh -c "source $HOME/.zshrc" ''; zplug = { @@ -76,6 +79,8 @@ # Example: link dotfiles without forcing overwrite # (fails safely if a file already exists) home.file.".tmux.conf".source = ./_tmux.conf; + home.file.".zshrc".source = ./_zshrc; + home.file.".bashrc".source = ./_bashrc; home.file.".local/share/nvim/site/autoload/plug.vim".source = pkgs.fetchurl { url = "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim";