This commit is contained in:
Tao Tien 2023-09-30 18:12:42 -07:00
parent ed53e0aaf6
commit 388d225b03
2 changed files with 3 additions and 3 deletions

View file

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