From ee9d45a1c9728cb50d93512ccc78b449a678af76 Mon Sep 17 00:00:00 2001 From: Nickiel Date: Wed, 25 Dec 2024 16:20:02 -0800 Subject: [PATCH] changed default system to aarch --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 1985e0d..09b00de 100644 --- a/flake.nix +++ b/flake.nix @@ -28,7 +28,8 @@ Some utility commands: outputs = { self, nixpkgs, rust-overlay }: let overlays = [ (import rust-overlay) ]; - system = "x86_64-linux"; + # system = "x86_64-linux"; + system = "aarch64-linux"; pkgs = import nixpkgs { inherit system overlays; };