Add several CLI tools
This commit is contained in:
parent
b46b38bf7f
commit
1e91fd156f
|
@ -0,0 +1,8 @@
|
||||||
|
{ config, pkgs, ...}:
|
||||||
|
{
|
||||||
|
programs.direnv = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
nix-direnv.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{ config, pkgs, ...}:
|
||||||
|
{
|
||||||
|
programs.eza = {
|
||||||
|
enable = true;
|
||||||
|
enableAliases = true;
|
||||||
|
};
|
||||||
|
}
|
4
home.nix
4
home.nix
|
@ -9,6 +9,10 @@ in
|
||||||
./atuin.nix
|
./atuin.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
|
./eza.nix
|
||||||
|
./jq.nix
|
||||||
|
./tmux.nix
|
||||||
|
./direnv.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, pkgs, ...}:
|
||||||
|
{
|
||||||
|
programs.jq = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue