summaryrefslogtreecommitdiff
path: root/user-profiles/utils.nix
blob: d0d2b2c82d7711a1c63858427d774c7572e78746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ userName, pkgs, ... }:
{
  home-manager.users.${userName} = {
    programs = {
      htop = {
        enable = true;
        settings = {
          delay = 5;
          highlightBaseName = true;
          treeView = true;
        };
      };

      jq.enable = true;
    };

    home.sessionVariables = {
      LESSCOLORIZER = "pygmentize -O style=rrt";
    };

    home.packages = with pkgs; [
      autossh usbutils pciutils exa silver-searcher pwgen unzip
      magic-wormhole qrencode tty-clock dnsutils openssl sshfs psmisc
      mosh tree vnstat file pv bc fast-cli zip nmap aspell
      aspellDicts.de aspellDicts.en borgbackup man-pages rsync socat
      inetutils yq cached-nix-shell persistent-nix-shell rage
    ];
  };
}