1
Fork 0
satellite/home/features/cli/default.nix

56 lines
1.1 KiB
Nix

{ pkgs, ... }:
{
imports = [
./scripts
./eza.nix
./bat.nix
./ssh.nix
./git.nix
./starship.nix
./direnv.nix
./tealdeer.nix
./fish
];
programs.bash.enable = true;
stylix.targets.yazi.enable = true;
home.packages = with pkgs; [
# {{{ System information
acpi # Battery stats
neofetch # Display system information
tokei # Useless but fun line of code counter (sloc alternative)
bottom # System monitor
# }}}
# {{{ Storage
ncdu # TUI disk usage
du-dust # Similar to du and ncdu in purpose.
# }}}
# {{{ Alternatives to usual commands
ripgrep # Better grep
fd # Better find
sd # Better sed
httpie # Better curl
# }}}
# {{{ Misc
yazi # Terminal file explorer
bc # Calculator
ouch # Unified compression / decompression tool
mkpasswd # Hash passwords
jq # Json maniuplation
# }}}
];
home.shellAliases = {
# {{{ Storage
# -h: humans readable units
df = "df -h";
du = "du -h";
# duh: short for `du here`
# -d: depth
duh = "du -hd 1";
# }}}
};
}