about summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-03-17 01:23:32 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-03-17 01:23:32 +0100
commit60b6483c4c54c7daf5d8cf9f77c7df8158543077 (patch)
tree5f0ab7b2f07c614be56803877b1621285c018072
parent4070552a3e593d1a561073f21b55869f384fca11 (diff)
machines/labtop: Fix evaluation of systemPackages.
We don't have a Nix package for pronterface yet and slic3r is broken
right now, so we need to investigate it after the first build from
Hydra.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
-rw-r--r--machines/labtop.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/machines/labtop.nix b/machines/labtop.nix
index 0b2c40ba..a66ceea3 100644
--- a/machines/labtop.nix
+++ b/machines/labtop.nix
@@ -41,7 +41,7 @@ in {
     pkgs.gimp
     pkgs.freecad
     pkgs.openscad
-    pkgs.pronterface
+    #pkgs.pronterface <- TODO
     pkgs.blender
     pkgs.slic3r
     pkgs.libreoffice
@@ -51,6 +51,9 @@ in {
     pkgs.vlc
   ];
 
+  # TODO: Needed for slic3r right now.
+  nixpkgs.config.allowBroken = true;
+
   services.xserver.enable = true;
   services.xserver.layout = "us";
   services.xserver.xkbOptions = "eurosign:e";