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

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

  environment.systemPackages = with pkgs; [
    vim
    pv
    fd
    entr
    exa
    file
    htop
    lsof
    iftop
    nmap
    moreutils
    mtr
    tree
    zip
    unzip
    telnet

    unar
  ];
}