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

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

  environment.systemPackages = with pkgs; [
    coreutils-prefixed
    curl
    file
    fzf
    gnused
    gotop
    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";
}