From 05d3224336b10ff155890eda6b1a04588885bd49 Mon Sep 17 00:00:00 2001 From: Yusuf Bera Ertan Date: Sat, 17 Apr 2021 23:16:45 +0300 Subject: [PATCH] hydra-check, jq (used by some stuff), remove gcc and gnumake (why did i have them?) --- profiles/core.nix | 2 ++ profiles/develop/default.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/profiles/core.nix b/profiles/core.nix index 5d41c58..de21c37 100644 --- a/profiles/core.nix +++ b/profiles/core.nix @@ -25,6 +25,7 @@ in exa ripgrep curl + jq git gptfdisk iputils @@ -37,6 +38,7 @@ in amber unzip grit + hydra-check ]; shellAliases = diff --git a/profiles/develop/default.nix b/profiles/develop/default.nix index 437e24a..a910968 100644 --- a/profiles/develop/default.nix +++ b/profiles/develop/default.nix @@ -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; }