2
0
Fork 0
genodepkgs/nixos-modules/default.nix

24 lines
390 B
Nix
Raw Normal View History

2020-12-10 20:23:53 +01:00
{ flake }:
2020-12-30 21:07:30 +01:00
{
2020-12-10 20:23:53 +01:00
x86_64 = {
2020-12-30 21:07:30 +01:00
imports = [
./genode-core.nix
./genode-init.nix
./hardware.nix
./qemu-vm.nix
./systemd.nix
];
2020-12-10 20:23:53 +01:00
nixpkgs = rec {
localSystem = "x86_64-linux";
crossSystem = "x86_64-genode";
system = localSystem + "-" + crossSystem;
pkgs = flake.legacyPackages.${system};
};
};
nova = import ./nova.nix;
}