flake.nix: Set system explicitly for now

Flakes now are evaluated in pure mode, so we can't rely on
currentSystem anymore.
This commit is contained in:
Eelco Dolstra 2019-02-12 20:32:26 +01:00
parent 8eaf02b9cd
commit 123dea9b0d

View file

@ -6,7 +6,7 @@
description = "A collection of packages for the Nix package manager"; description = "A collection of packages for the Nix package manager";
provides = flakes: provides = flakes:
let pkgs = import ./. {}; in let pkgs = import ./. { system = "x86_64-linux"; }; in
{ {
lib = import ./lib; lib = import ./lib;