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

  programs.fzf.enable = true;

  home.packages = with pkgs; [
    mdcat
    moreutils
    pup
    inxi
    pv
    yad
    jq
    yj
    pkgs.tsutsumi.html2md
  ];
}