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

{ programs.zsh = {
    enable = true;
    promptInit = "";
  };
  programs.bash.enableCompletion = true;

  environment.systemPackages = with pkgs; [
    vim
    pv
    file
    htop
    lsof
    iftop
    iotop
    nmap
    netperf
    moreutils
    psmisc
    tree
    zip
    unzip
    telnet
  ];
}