about summary refs log tree commit diff
path: root/modules/shell/default.nix
blob: 449b41c8912881f15699ef428d6e6d06c6a34aa4 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ pkgs, ... }:

{
  imports = [
    ./cargo ./direnv ./git ./kakoune ./less ./lynx ./pass ./tmux ./zsh
  ];

  environment.systemPackages = with pkgs; [
    (aspellWithDicts (dicts: with dicts; [ en en-computers en-science eo ]))
    bind.dnsutils
    binutils
    coreutils-prefixed
    curl
    execline
    file
    ffsend
    fzf
    gnused
    gotop
    htop
    httpie
    jq
    lsof
    moreutils
    ncdu
    neovim
    nmap
    openssh
    pciutils
    pv
    ranger
    silver-searcher
    traceroute
    tree
    units
    unixtools.watch
    wget
    whois
  ] ++ lib.optional stdenv.isDarwin pinentry_mac;

  environment.variables.CLICOLOR = "1";
  environment.variables.EDITOR = "kak";
  environment.variables.EMAIL = "hi@alyssa.is";
}