about summary refs log blame commit diff
path: root/users/wpcarro/common.nix
blob: 7093b5f1d43b6fed528ce7c2bc4346917d2fb145 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


              









                                  























                                                                                
{ pkgs, ... }:

{
  services = {
    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
    jq
    mkpasswd
    nmap
    python3
    ripgrep
    tldr
    tokei
    tree
    vim
    xclip
  ];
}