Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add shell tools

+18 -1
+1
home/base/default.nix
··· 5 5 ./gpg.nix 6 6 ./git.nix 7 7 ./shell.nix 8 + ./tools.nix 8 9 ./tmux.nix 9 10 ./xdg.nix 10 11 ./ssh.nix
-1
home/base/shell.nix
··· 23 23 shellAliases = { 24 24 ls = "ls --color=auto"; 25 25 ll = "ls -l"; 26 - wx = "wezmux"; 27 26 http = "xh"; 28 27 }; 29 28 history = {
+17
home/base/tools.nix
··· 1 + { lib, pkgs, ... }: 2 + 3 + with lib; 4 + { 5 + home = { 6 + packages = with pkgs; [ 7 + ripgrep 8 + xh 9 + sd 10 + fd 11 + jq 12 + ]; 13 + shellAliases = { 14 + http = "xh"; 15 + }; 16 + }; 17 + }