From ebc85327677ff69791e623bc90ba55a74f308737 Mon Sep 17 00:00:00 2001 From: sempruijs Date: Sat, 17 Jun 2023 21:11:44 +0200 Subject: [PATCH] Add aarch64-linux and x86_64-darwin systems to the default template --- template/default/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/default/flake.nix b/template/default/flake.nix index ab4bc55..929e34f 100644 --- a/template/default/flake.nix +++ b/template/default/flake.nix @@ -14,7 +14,7 @@ # 3. Add here: foo.flakeModule ]; - systems = [ "x86_64-linux" "aarch64-darwin" ]; + systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ]; perSystem = { config, self', inputs', pkgs, system, ... }: { # Per-system attributes can be defined here. The self' and inputs' # module parameters provide easy access to attributes of the same