From 15a61d3f1d6a5ff3e40dcafaaceaeade71deffa9 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sun, 18 Apr 2021 12:38:00 +0200 Subject: [PATCH] This config can only be evaluated on x86_64-linux because of IFD --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 2ee7bb53..e5858a3f 100644 --- a/flake.nix +++ b/flake.nix @@ -13,6 +13,8 @@ outputs = inputs@{ self, nixpkgs, emacs-overlay, home-manager, utils }: utils.lib.systemFlake { inherit self inputs; + # This config can only be evaluated on x86_64-linux because of IFD + supportedSystems = [ "x86_64-linux" ]; channels.nixpkgs = { input = nixpkgs; patches = map (patch: ./patches + "/${patch}") (builtins.attrNames (builtins.readDir ./patches));