From 8df4139f170c800215cf1d360f23fd5597b50505 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Wed, 27 Apr 2022 10:32:05 +0000 Subject: [PATCH] List systems explicitly I'm just using x86_64-linux systems right now and explicitly listing the systems makes things easier for now. --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e175965..b86da67 100644 --- a/flake.nix +++ b/flake.nix @@ -25,7 +25,9 @@ , nur , nix-pre-commit-hooks , ... - }@inputs: flake-utils.lib.eachDefaultSystem + }@inputs: flake-utils.lib.eachSystem [ + "x86_64-linux" + ] (system: let pkgs = import nixpkgs { inherit system; };