diff options
Diffstat (limited to 'users/wpcarro/common.nix')
-rw-r--r-- | users/wpcarro/common.nix | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/users/wpcarro/common.nix b/users/wpcarro/common.nix new file mode 100644 index 000000000000..9a8dd344d82e --- /dev/null +++ b/users/wpcarro/common.nix @@ -0,0 +1,71 @@ +{ depot, pkgs, ... }: + +let + inherit (depot.users) wpcarro; +in +{ + programs = { + fish.enable = true; + + gnupg.agent.enable = true; + + ssh = { + startAgent = true; + extraConfig = '' + AddKeysToAgent yes + ''; + }; + + git = { + enable = true; + config = { + user.name = "William Carroll"; + user.email = "wpcarro@gmail.com"; + }; + }; + }; + + services = { + locate.enable = true; + + depot.automatic-gc = { + enable = true; + interval = "1 hour"; + diskThreshold = 16; # GiB + maxFreed = 10; # GiB + preserveGenerations = "14d"; + }; + }; + + # Command-line tools I commonly used and want available on most (or all) of my + # machines. + shell-utils = with pkgs; [ + bat + dig + direnv + diskus + emacs + exa + fd + fzf + git + gnupg + htop + jq + mkpasswd + nmap + pass + python3 + rink + ripgrep + tldr + tokei + tree + vim + whois + # TODO(wpcarro): Debug this failing build. + # wpcarro.tools.simple_vim + xclip + zip + ]; +} |