added some more tools

This commit is contained in:
Thilo Billerbeck 2023-05-02 23:43:49 +02:00
parent 522ff8ac5d
commit c176c3de53
4 changed files with 28 additions and 1 deletions

7
programs/bat.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, lib, ... }:
{
programs.bat = {
enable = true;
};
}

View file

@ -0,0 +1,7 @@
{ config, pkgs, lib, ... }:
{
programs.command-not-found = {
enable = true;
};
}

9
programs/fzf.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, lib, ... }:
{
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
}

View file

@ -44,7 +44,11 @@ in {
plugins = map (x: { plugins = map (x: {
name = "plugins/${x}"; name = "plugins/${x}";
tags = [ "from:oh-my-zsh" ]; tags = [ "from:oh-my-zsh" ];
}) omz-plugins; }) omz-plugins ++ [
{
name = "chisui/zsh-nix-shell";
}
];
}; };
}; };
} }