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

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

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