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

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

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