WIP: rewrite config #618
1 changed files with 6 additions and 1 deletions
|
@ -10,11 +10,16 @@ let
|
|||
crossSystem.system = "riscv64-linux";
|
||||
overlays = [ lix.overlays.default ];
|
||||
};
|
||||
pkgs_x86_64_2 = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
crossSystem.system = "riscv64-linux";
|
||||
};
|
||||
in
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
inherit (pkgs_x86_64) lix nixos-option;
|
||||
inherit (pkgs_x86_64) lix;
|
||||
inherit (pkgs_x86_64_2) nixos-option;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue