sigil/nixos-modules/default.nix

27 lines
461 B
Nix
Raw Normal View History

2020-12-10 20:23:53 +01:00
{ flake }:
{
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
];
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;
2020-12-10 20:23:53 +01:00
pkgs = flake.legacyPackages.${system};
};
};
nova = import ./nova.nix;
}