feat(homes/rafiq/cli): add alias for fzf nvim

This commit is contained in:
Mohammad Rafiq 2025-05-18 18:25:43 +08:00
parent 577154c871
commit d60030ed5d
No known key found for this signature in database

View file

@ -7,6 +7,7 @@
home.packages = with pkgs; [
neovim
ripgrep
fzf
(pkgs.writeShellScriptBin "rebuild" # sh
''
if [ ! -f "flake.nix" ]; then
@ -24,6 +25,10 @@
EDITOR = "nvim";
};
home.shellAliases = {
edit = "nvim $(fzf)";
};
programs.nix-index.enable = true;
programs.nix-index-database.comma.enable = true;
}