From 1da7d3aa910d34b91f1573b01a419585ccb7c635 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Sat, 30 Sep 2023 18:29:41 -0700 Subject: [PATCH] fix system? --- flake.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 8d2175a..0bc9b8b 100644 --- a/flake.nix +++ b/flake.nix @@ -9,17 +9,15 @@ outputs = { nixpkgs, nixos-hardware, nixpkgs-unstable, ... }: let - system = "x86_64-linux"; overlay-unstable = final: prev: { unstable = import nixpkgs-unstable { - inherit system; + system = "x86_64-linux"; config.allowUnfree = true; }; }; - system-arm64 = "aarch64-linux"; overlay-unstable-arm = final: prev: { unstable = import nixpkgs-unstable { - inherit system-arm64; + system = "aarch64-linux"; config.allowUnfree = true; }; };