diff options
| author | Michael Hoang <enzime@users.noreply.github.com> | 2024-11-17 13:11:30 +1100 |
|---|---|---|
| committer | Michael Hoang <enzime@users.noreply.github.com> | 2024-11-21 11:07:47 +1100 |
| commit | a4d4d12e3885f9fea3100c73d024664ea9572f94 (patch) | |
| tree | 0e7c18c73367f1d00b53d1afc4479a207bc29bba /modules/examples/flake | |
| parent | 3c27b0874017b325b0ed7269705c0d2df5df42dc (diff) | |
examples: change default architecture to `aarch64-darwin`
Diffstat (limited to 'modules/examples/flake')
| -rw-r--r-- | modules/examples/flake/flake.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/examples/flake/flake.nix b/modules/examples/flake/flake.nix index dbcc420..4520b8f 100644 --- a/modules/examples/flake/flake.nix +++ b/modules/examples/flake/flake.nix @@ -30,7 +30,7 @@ system.stateVersion = 5; # The platform the configuration will be used on. - nixpkgs.hostPlatform = "x86_64-darwin"; + nixpkgs.hostPlatform = "aarch64-darwin"; }; in { @@ -39,8 +39,5 @@ darwinConfigurations."simple" = nix-darwin.lib.darwinSystem { modules = [ configuration ]; }; - - # Expose the package set, including overlays, for convenience. - darwinPackages = self.darwinConfigurations."simple".pkgs; }; } |
