mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
added some more tools
This commit is contained in:
parent
522ff8ac5d
commit
c176c3de53
4 changed files with 28 additions and 1 deletions
7
programs/bat.nix
Normal file
7
programs/bat.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.bat = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
7
programs/command-not-found.nix
Normal file
7
programs/command-not-found.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.command-not-found = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
9
programs/fzf.nix
Normal file
9
programs/fzf.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.fzf = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
|
@ -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";
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue