From 24900c562485bf3b37470f042e4414955d68f74a Mon Sep 17 00:00:00 2001 From: oddlama Date: Thu, 2 Feb 2023 00:27:29 +0100 Subject: [PATCH] fix: remove usage of impure variable currentSystem in flakes --- src/nix/hive/eval.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix/hive/eval.nix b/src/nix/hive/eval.nix index c54ea74..2109c19 100644 --- a/src/nix/hive/eval.nix +++ b/src/nix/hive/eval.nix @@ -77,7 +77,7 @@ let outputs = { nixpkgs, ... }: { colmena = { ${configName} = import nixpkgs { - system = "${currentSystem}"; + system = "x86_64-linux"; # Set your desired system here overlays = []; }; };