From 2a6de63b6450752da71d471c65690d55e9e3e69b Mon Sep 17 00:00:00 2001 From: Ryan Clark Date: Mon, 11 Nov 2024 13:49:25 -0600 Subject: [PATCH] Refactor mini.nix: Update darwinConfigurations in flake.nix --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 7a228148..4b03c30e 100644 --- a/flake.nix +++ b/flake.nix @@ -82,7 +82,7 @@ } @ inputs: let inherit (self) outputs; - lib = nixpkgs.lib // home-manager.lib; # // nix-darwin.lib + lib = nixpkgs.lib // home-manager.lib; # // nix-darwin.lib forEachSystem = f: lib.genAttrs (import systems) (system: f pkgsFor.${system}); pkgsFor = lib.genAttrs (import systems) ( system: @@ -127,6 +127,7 @@ darwinConfigurations = { mini = nix-darwin.lib.darwinSystem { + system = "aarch64-darwin"; specialArgs = { inherit inputs outputs; };