summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2024-11-17 13:11:30 +1100
committerMichael Hoang <enzime@users.noreply.github.com>2024-11-21 11:07:47 +1100
commita4d4d12e3885f9fea3100c73d024664ea9572f94 (patch)
tree0e7c18c73367f1d00b53d1afc4479a207bc29bba /modules/examples
parent3c27b0874017b325b0ed7269705c0d2df5df42dc (diff)
examples: change default architecture to `aarch64-darwin`
Diffstat (limited to 'modules/examples')
-rw-r--r--modules/examples/flake/flake.nix5
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;
};
}