mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:53:55 -05:00
home-manager: added modules and extra config for CLI utilities
This commit is contained in:
parent
a2aa213365
commit
bb7c6c587d
12
home/aly.nix
12
home/aly.nix
|
@ -14,8 +14,6 @@
|
|||
# Packages that should be installed to the user profile.
|
||||
home.packages = with pkgs; [
|
||||
curl
|
||||
eza # A modern replacement for ‘ls’
|
||||
fzf # A command-line fuzzy finder
|
||||
gh
|
||||
git
|
||||
github-desktop
|
||||
|
@ -24,4 +22,14 @@
|
|||
warp-terminal
|
||||
wget
|
||||
];
|
||||
|
||||
programs.eza.enable = true;
|
||||
programs.eza.git = true;
|
||||
|
||||
programs.fzf.enable = true;
|
||||
|
||||
programs.nnn.enable = true;
|
||||
|
||||
programs.tmux.enable = true;
|
||||
|
||||
}
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
programs.bash = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
shellAliases = {
|
||||
ls = "eza --group-directories-first";
|
||||
};
|
||||
initExtra =
|
||||
''
|
||||
export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ "
|
||||
|
|
Loading…
Reference in a new issue