Charlotte 🦝 Delenk
5845d41951
All checks were successful
Hydra nixosConfigurations.not522 Hydra build #22174 of nixos-config:pr618:nixosConfigurations.not522
18 lines
336 B
Nix
18 lines
336 B
Nix
# Cross compiled packages for when shit breaks
|
|
{
|
|
nixpkgs,
|
|
lix,
|
|
...
|
|
}: let
|
|
pkgs_x86_64 = import nixpkgs {
|
|
system = "x86_64-linux";
|
|
crossSystem.system = "riscv64-linux";
|
|
overlays = [lix.overlays.default];
|
|
};
|
|
in {
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
inherit (pkgs_x86_64) lix nixos-option;
|
|
})
|
|
];
|
|
}
|