WIP: rewrite config #618

Draft
darkkirb wants to merge 345 commits from rewrite into main
Showing only changes of commit f62e92ff98 - Show all commits

View file

@ -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;
})
];
}