about summary refs log tree commit diff
path: root/modules/shell/default.nix
blob: e5ffa74e8606a24460cabf37832648b06d2ea52d (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
{ pkgs, ... }:

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

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

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