2
0
Fork 0

Add nixosModules to flake

Esse commit está contido em:
Ehmry - 2020-12-10 20:23:53 +01:00
commit 51a68d1e91
2 arquivos alterados com 24 adições e 0 exclusões

Ver arquivo

@ -131,6 +131,10 @@
packages = self.packages.${system};
});
nixosModules =
# Modules for composing Genode and NixOS
import ./nixos-modules { flake = self; };
checks =
# Checks for continous testing
let tests = import ./tests;

20
nixos-modules/default.nix Normal file
Ver arquivo

@ -0,0 +1,20 @@
{ flake }:
let
baseModules =
[ ./genode-core.nix ./genode-init.nix ./gui ./hardware.nix ./systemd.nix ];
in {
x86_64 = {
imports = [ baseModules ];
nixpkgs = rec {
localSystem = "x86_64-linux";
crossSystem = "x86_64-genode";
system = localSystem + "-" + crossSystem;
pkgs = flake.legacyPackages.${system};
};
};
nova = import ./nova.nix;
}