summaryrefslogtreecommitdiff
path: root/home/ebisu/meta/system/shell/default.nix
blob: 2ee83d1fbfe27e0d956e007ebe29038c2855bdf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ pkgs, ... }:
{
  imports = [
    ./fish
    ./starship
    ./scripting
  ];

  home.packages = with pkgs; [
    asciinema
    navi
    shellclear
    watchexec
    zoxide
    shellcheck
    termius
    dash
    mosh
    killall
  ];
}