diff --git a/programs/bat.nix b/programs/bat.nix new file mode 100644 index 0000000..ece9136 --- /dev/null +++ b/programs/bat.nix @@ -0,0 +1,7 @@ +{ config, pkgs, lib, ... }: + +{ + programs.bat = { + enable = true; + }; +} diff --git a/programs/command-not-found.nix b/programs/command-not-found.nix new file mode 100644 index 0000000..cd3d7f0 --- /dev/null +++ b/programs/command-not-found.nix @@ -0,0 +1,7 @@ +{ config, pkgs, lib, ... }: + +{ + programs.command-not-found = { + enable = true; + }; +} diff --git a/programs/fzf.nix b/programs/fzf.nix new file mode 100644 index 0000000..cf4a7e6 --- /dev/null +++ b/programs/fzf.nix @@ -0,0 +1,9 @@ +{ config, pkgs, lib, ... }: + +{ + programs.fzf = { + enable = true; + enableZshIntegration = true; + + }; +} diff --git a/programs/zsh.nix b/programs/zsh.nix index 06af6a2..eee6151 100644 --- a/programs/zsh.nix +++ b/programs/zsh.nix @@ -44,7 +44,11 @@ in { plugins = map (x: { name = "plugins/${x}"; tags = [ "from:oh-my-zsh" ]; - }) omz-plugins; + }) omz-plugins ++ [ + { + name = "chisui/zsh-nix-shell"; + } + ]; }; }; }