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
ripgrep
curl
jq
git
gptfdisk
iputils
@ -37,6 +38,7 @@ in
amber
unzip
grit
hydra-check
];
shellAliases =

View File

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