fix system?

This commit is contained in:
Tao Tien 2023-09-30 18:29:41 -07:00
parent 388d225b03
commit 1da7d3aa91

View file

@ -9,17 +9,15 @@
outputs = { nixpkgs, nixos-hardware, nixpkgs-unstable, ... }: outputs = { nixpkgs, nixos-hardware, nixpkgs-unstable, ... }:
let let
system = "x86_64-linux";
overlay-unstable = final: prev: { overlay-unstable = final: prev: {
unstable = import nixpkgs-unstable { unstable = import nixpkgs-unstable {
inherit system; system = "x86_64-linux";
config.allowUnfree = true; config.allowUnfree = true;
}; };
}; };
system-arm64 = "aarch64-linux";
overlay-unstable-arm = final: prev: { overlay-unstable-arm = final: prev: {
unstable = import nixpkgs-unstable { unstable = import nixpkgs-unstable {
inherit system-arm64; system = "aarch64-linux";
config.allowUnfree = true; config.allowUnfree = true;
}; };
}; };