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

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