From 6ff81bef39ff6d84aab0bd3bf975fc89afd22765 Mon Sep 17 00:00:00 2001 From: Astro Date: Sat, 27 Feb 2021 02:02:04 +0100 Subject: [PATCH] flake.nix: simplify forAllSystems --- flake.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index bf0c73a2..acb5e0aa 100644 --- a/flake.nix +++ b/flake.nix @@ -8,9 +8,8 @@ outputs = { self, nixpkgs, secrets, nixos-hardware }: let - forAllSystems = f: - nixpkgs.lib.genAttrs [ "aarch64-linux" "x86_64-linux" ] - (system: f system); + forAllSystems = + nixpkgs.lib.genAttrs [ "aarch64-linux" "x86_64-linux" ]; hostRegistry = import ./host-registry.nix; in {