config/env.nix

16 lines
222 B
Nix
Raw Permalink Normal View History

2022-05-19 20:13:00 +02:00
# Packages I tend to use
{ pkgs }: pkgs.buildEnv {
2022-05-23 10:16:05 +02:00
name = "riley-user-utils";
paths = with pkgs; [
ripgrep
bottom
delta
skim
exa
bat
lf
fd
];
2022-05-19 20:13:00 +02:00
}