about summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-02-12 20:32:26 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-02-05 23:14:32 +0100
commit123dea9b0d96544f042428b556a76ce6ed6f18b2 (patch)
tree53bd13233f58581a7007aa000e90b38111b664c4 /flake.nix
parent8eaf02b9cd35def36217d39812b7c656de307c58 (diff)
downloadnixlib-123dea9b0d96544f042428b556a76ce6ed6f18b2.tar
nixlib-123dea9b0d96544f042428b556a76ce6ed6f18b2.tar.gz
nixlib-123dea9b0d96544f042428b556a76ce6ed6f18b2.tar.bz2
nixlib-123dea9b0d96544f042428b556a76ce6ed6f18b2.tar.lz
nixlib-123dea9b0d96544f042428b556a76ce6ed6f18b2.tar.xz
nixlib-123dea9b0d96544f042428b556a76ce6ed6f18b2.tar.zst
nixlib-123dea9b0d96544f042428b556a76ce6ed6f18b2.zip
flake.nix: Set system explicitly for now
Flakes now are evaluated in pure mode, so we can't rely on
currentSystem anymore.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 9f5434330aa2..f007a060fd16 100644
--- a/flake.nix
+++ b/flake.nix
@@ -6,7 +6,7 @@
   description = "A collection of packages for the Nix package manager";
 
   provides = flakes:
-    let pkgs = import ./. {}; in
+    let pkgs = import ./. { system = "x86_64-linux"; }; in
     {
       lib = import ./lib;