[feat] Add wezterm.nix

This commit is contained in:
Uttarayan
2024-02-14 20:01:31 +05:30
parent 21eda15d4b
commit caca36afaf
4 changed files with 110 additions and 68 deletions

8
config/nix/fzf.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs, ... }: {
programs.fzf = {
enable = true;
package = pkgs.fzf;
enableFishIntegration = true;
enableShellIntegration = true;
};
}