changes to shell home packages

This commit is contained in:
ooks-io 2023-07-30 18:12:06 +12:00
parent ccfa6206a0
commit c72f8946c3

View file

@ -0,0 +1,23 @@
{ pkgs, ... }: {
imports = [
./bat.nix
./git.nix
./bash.nix
./fish.nix
./pfetch.nix
./starship.nix
./joshuto
];
home.packages = with pkgs; [
bc # Calculator
ncdu # disk util
exa # ls
fd # find
ripgrep # Better grep
httpie # Better curl
diffsitter # Better diff
jq # JSON pretty printer and manipulator
nix-inspect # See which pkgs are in your PATH
comma # Install and run with ","
];
}