summaryrefslogtreecommitdiffstats
path: root/nixos/modules/system/etc/etc.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-09-27 15:28:11 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-09-29 13:06:41 +0200
commit0cb16a6955ff6ef447a81caab02a8389b2d19dd4 (patch)
tree79ba36035f4996690f7f073bd99ad49cfa110abd /nixos/modules/system/etc/etc.nix
parent518340624d92c7d802b23e73b078010a505b3609 (diff)
Add stdenvNoCC
This is a standard environment that doesn't contain a C/C++ compiler. This is mostly to prevent trivial builders like runCommand and substituteAll from pulling in gcc for simple configuration changes on NixOS.
Diffstat (limited to 'nixos/modules/system/etc/etc.nix')
-rw-r--r--nixos/modules/system/etc/etc.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/etc/etc.nix b/nixos/modules/system/etc/etc.nix
index 163f4f4106e8..af1969d82e78 100644
--- a/nixos/modules/system/etc/etc.nix
+++ b/nixos/modules/system/etc/etc.nix
@@ -8,7 +8,7 @@ let
etc' = filter (f: f.enable) (attrValues config.environment.etc);
- etc = pkgs.stdenv.mkDerivation {
+ etc = pkgs.stdenvNoCC.mkDerivation {
name = "etc";
builder = ./make-etc.sh;