Add several CLI tools

This commit is contained in:
Leonora Tindall 2024-02-05 10:58:49 -06:00
parent b46b38bf7f
commit 1e91fd156f
5 changed files with 32 additions and 0 deletions

8
direnv.nix Normal file
View File

@ -0,0 +1,8 @@
{ config, pkgs, ...}:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}

7
eza.nix Normal file
View File

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

View File

@ -9,6 +9,10 @@ in
./atuin.nix
./starship.nix
./ssh.nix
./eza.nix
./jq.nix
./tmux.nix
./direnv.nix
./packages.nix
];

6
jq.nix Normal file
View File

@ -0,0 +1,6 @@
{ config, pkgs, ...}:
{
programs.jq = {
enable = true;
};
}

7
tmux.nix Normal file
View File

@ -0,0 +1,7 @@
{ config, pkgs, ...}:
{
programs.tmux = {
enable = true;
keyMode = "vi";
};
}