sigil/nixos-modules/default.nix

27 lines
464 B
Nix
Raw Permalink Normal View History

{ legacyPackages }:
2020-12-10 20:23:53 +01:00
{
x86_64 = {
imports = [
2021-03-04 15:02:39 +01:00
./eris
2021-01-13 12:33:52 +01:00
./file-systems.nix
2020-12-10 20:23:53 +01:00
./genode-core.nix
./genode-init.nix
./gui
./hardware
./qemu-vm.nix
2021-04-13 13:59:23 +02:00
./services
2020-12-10 20:23:53 +01:00
];
2022-10-06 21:03:52 +02:00
nixpkgs = rec {
2021-01-05 15:11:42 +01:00
localSystem.system = "x86_64-linux";
crossSystem.system = "x86_64-genode";
system = localSystem.system + "-" + crossSystem.system;
pkgs = legacyPackages.${system};
2020-12-10 20:23:53 +01:00
};
};
nova = import ./nova.nix;
}