summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/system/shell/default.nix
blob: 05e84a728525dcf9a4f1e1edb2be1423fcb74a43 (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 = [
    ./scripting
    ./fish.nix
    ./starship.nix
  ];

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