From 1c52fc0dab75a7fb214754022eaea77491853291 Mon Sep 17 00:00:00 2001 From: clerie Date: Wed, 28 Jun 2023 18:59:17 +0200 Subject: [PATCH] flake.nix: colmena requires a nixpkgs with explicitly set system --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 86a2394..1957063 100644 --- a/flake.nix +++ b/flake.nix @@ -70,7 +70,9 @@ colmena = { meta = { - nixpkgs = import nixpkgs {}; + nixpkgs = import nixpkgs { + system = "x86_64-linux"; + }; }; } // helper.mapToColmenaHosts self.nixosConfigurations;