fix system?
This commit is contained in:
parent
388d225b03
commit
1da7d3aa91
1 changed files with 2 additions and 4 deletions
|
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue