You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
461 B
Nix
27 lines
461 B
Nix
{ flake }:
|
|
|
|
{
|
|
|
|
x86_64 = {
|
|
imports = [
|
|
./eris
|
|
./file-systems.nix
|
|
./genode-core.nix
|
|
./genode-init.nix
|
|
./gui
|
|
./hardware
|
|
./qemu-vm.nix
|
|
./services
|
|
];
|
|
nixpkgs = rec {
|
|
localSystem.system = "x86_64-linux";
|
|
crossSystem.system = "x86_64-genode";
|
|
system = localSystem.system + "-" + crossSystem.system;
|
|
pkgs = flake.legacyPackages.${system};
|
|
};
|
|
};
|
|
|
|
nova = import ./nova.nix;
|
|
|
|
}
|