hydra-check, jq (used by some stuff), remove gcc and gnumake (why did i have them?)

This commit is contained in:
dusk 2021-04-17 23:16:45 +03:00
parent d8ca43db89
commit 05d3224336
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
2 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,7 @@ in
exa exa
ripgrep ripgrep
curl curl
jq
git git
gptfdisk gptfdisk
iputils iputils
@ -37,6 +38,7 @@ in
amber amber
unzip unzip
grit grit
hydra-check
]; ];
shellAliases = shellAliases =

View File

@ -1,7 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
imports = [ ./editor ]; imports = [ ./editor ];
environment.systemPackages = with pkgs; [ git gcc tokei gnumake ]; environment.systemPackages = with pkgs; [ git tokei ];
documentation.dev.enable = true; documentation.dev.enable = true;
} }