Personal Nix setup

Add shell tools

Changed files
+18 -1
home
+1
home/base/default.nix
···
./gpg.nix
./git.nix
./shell.nix
+
./tools.nix
./tmux.nix
./xdg.nix
./ssh.nix
-1
home/base/shell.nix
···
shellAliases = {
ls = "ls --color=auto";
ll = "ls -l";
-
wx = "wezmux";
http = "xh";
};
history = {
+17
home/base/tools.nix
···
+
{ lib, pkgs, ... }:
+
+
with lib;
+
{
+
home = {
+
packages = with pkgs; [
+
ripgrep
+
xh
+
sd
+
fd
+
jq
+
];
+
shellAliases = {
+
http = "xh";
+
};
+
};
+
}