Separate utils into a separate file
This commit is contained in:
parent
d0e49183a0
commit
91473a3972
2 changed files with 18 additions and 9 deletions
15
env.nix
Normal file
15
env.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
|
@ -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,7 @@ in {
|
||||||
curl
|
curl
|
||||||
git
|
git
|
||||||
|
|
||||||
# Coreutils
|
utils
|
||||||
|
|
||||||
ripgrep
|
|
||||||
bottom
|
|
||||||
skim
|
|
||||||
exa
|
|
||||||
bat
|
|
||||||
lf
|
|
||||||
fd
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue