Compare commits

...

2 Commits

2 changed files with 19 additions and 9 deletions

15
env.nix Normal file
View File

@ -0,0 +1,15 @@
# Packages I tend to use
{ pkgs }: pkgs.buildEnv {
name = "riley-user-utils";
paths = with pkgs; [
ripgrep
bottom
delta
skim
exa
bat
lf
fd
];
}

View File

@ -35,6 +35,8 @@ let named = submodule {
}; };
}; };
utils = import ../env.nix { inherit pkgs; };
in { in {
options.riley = with lib; { options.riley = with lib; {
@ -133,15 +135,8 @@ in {
curl curl
git git
# Coreutils # Common utils (rg, sk, fd, etc.)
utils
ripgrep
bottom
skim
exa
bat
lf
fd
]; ];