fix nix-env evaluation

nix-env picked up `default.nix`, which contained our hardware profiles.
This is not only cpu-intensive to evaluate but also fails because
it does some import-from-derivation.
By moving default.nix to release.nix it should be no longer loaded
This commit is contained in:
Jörg Thalheim 2019-01-04 08:48:42 +01:00
parent a9033dcc5f
commit b4e2df6aac
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 1 additions and 1 deletions

View File

@ -1,2 +1,2 @@
language: nix
script: nix-build --dry-run --show-trace
script: nix-build release.nix --dry-run --show-trace