cli tools
This commit is contained in:
parent
116856e6f2
commit
7a7c626474
@ -7,6 +7,9 @@
|
||||
../../modules/home-manager/zsh
|
||||
../../modules/home-manager/tmux
|
||||
../../modules/home-manager/taskwarrior
|
||||
../../modules/home-manager/zoxide
|
||||
../../modules/home-manager/eza
|
||||
../../modules/home-manager/bat
|
||||
];
|
||||
home.username = "mthomson";
|
||||
home.homeDirectory = "/Users/mthomson";
|
||||
@ -19,6 +22,8 @@
|
||||
jq
|
||||
fzf
|
||||
ripgrep
|
||||
tldr
|
||||
cowsay
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
9
modules/home-manager/bat/default.nix
Normal file
9
modules/home-manager/bat/default.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
bat = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
12
modules/home-manager/eza/default.nix
Normal file
12
modules/home-manager/eza/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
eza = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
git = true;
|
||||
icons = true;
|
||||
};
|
||||
};
|
||||
}
|
10
modules/home-manager/zoxide/default.nix
Normal file
10
modules/home-manager/zoxide/default.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
zoxide = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
};
|
||||
}
|
@ -15,6 +15,11 @@
|
||||
"zsh-users/zsh-history-substring-search"
|
||||
];
|
||||
};
|
||||
shellAliases = {
|
||||
cd = "z";
|
||||
cdi = "zi";
|
||||
cat = "bat";
|
||||
};
|
||||
};
|
||||
starship = {
|
||||
enable = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user