From c72f8946c35f8983459b37e5640868d6c8c5b2ed Mon Sep 17 00:00:00 2001 From: ooks-io Date: Sun, 30 Jul 2023 18:12:06 +1200 Subject: [PATCH] changes to shell home packages --- home/ooks/modules/feature/shell/default.nix | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 home/ooks/modules/feature/shell/default.nix diff --git a/home/ooks/modules/feature/shell/default.nix b/home/ooks/modules/feature/shell/default.nix new file mode 100644 index 0000000..0907407 --- /dev/null +++ b/home/ooks/modules/feature/shell/default.nix @@ -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 "," + ]; +}