summary refs log tree commit diff
path: root/nixos/release-small.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-06-19 12:01:31 +0200
committerEelco Dolstra <edolstra@gmail.com>2019-06-19 14:07:37 +0200
commitda5fc5c985a77c40bec34c027202132e46a0e81e (patch)
tree97980d4ce85ae4e11294230b418b8ddcb448b382 /nixos/release-small.nix
parent9e9cf6a75c55cd588a9ef6e2bba5b67b281c8dc9 (diff)
downloadnixpkgs-da5fc5c985a77c40bec34c027202132e46a0e81e.tar
nixpkgs-da5fc5c985a77c40bec34c027202132e46a0e81e.tar.gz
nixpkgs-da5fc5c985a77c40bec34c027202132e46a0e81e.tar.bz2
nixpkgs-da5fc5c985a77c40bec34c027202132e46a0e81e.tar.lz
nixpkgs-da5fc5c985a77c40bec34c027202132e46a0e81e.tar.xz
nixpkgs-da5fc5c985a77c40bec34c027202132e46a0e81e.tar.zst
nixpkgs-da5fc5c985a77c40bec34c027202132e46a0e81e.zip
release-small.nix: Don't depend on currentSystem
Diffstat (limited to 'nixos/release-small.nix')
-rw-r--r--nixos/release-small.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/release-small.nix b/nixos/release-small.nix
index b5b09dc38d0..84af457801a 100644
--- a/nixos/release-small.nix
+++ b/nixos/release-small.nix
@@ -11,7 +11,7 @@ let
 
   nixpkgsSrc = nixpkgs; # urgh
 
-  pkgs = import ./.. {};
+  pkgs = import ./.. { system = "x86_64-linux"; };
 
   lib = pkgs.lib;