1
Fork 0

Move a bunch of things around

This commit is contained in:
Matei Adriel 2023-12-02 00:46:56 +01:00
parent 28d21046ef
commit bfc89aff7f
No known key found for this signature in database
39 changed files with 435 additions and 244 deletions
home/features/cli

View file

@ -16,21 +16,42 @@
# Install clis
home.packages = with pkgs; [
ranger # Terminal file explorer
comma # Intstall and run programs by sticking a , before them
bc # Calculator
# {{{ 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
ranger # Terminal file explorer
comma # Intstall and run programs by sticking a , before them
bc # Calculator
ouch # Unified compression / decompression tool
mkpasswd # Hash passwords
neofetch # Display system information
tokei # Useless but fun line of code counter (sloc alternative)
bottom # System monitor
inputs.agenix.packages.${pkgs.system}.agenix # Secret encryption
inputs.deploy-rs.packages.${pkgs.system}.default # Deployment
# }}}
];
# Set up common aliases
home.shellAliases = {
# {{{ Storage
# -h = humans readable units
df = "df -h";
du = "du -h";
# short for `du here`
# -d = depth
duh = "du -hd 1";
# }}}
};
}