1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-31 04:04:55 +00:00

Simplify dogfood.nix

This commit is contained in:
Yang, Bo 2023-05-09 00:33:48 -07:00
parent a13fbf2b39
commit d30b7b26d0

View file

@ -1,32 +1,23 @@
{flake-parts-lib, lib, inputs, ...}: {
{flake-parts-lib, lib, inputs, ...}@topLevel: {
imports = [
./hello.nix
inputs.flake-parts.flakeModules.flakeModules
];
config.systems = [ "x86_64-linux" "aarch64-darwin" ];
options.flake = lib.mkOption {
type = lib.types.submoduleWith {
modules = [
(flake: {
flakeModules.dogfood = {
config.systems = [ "x86_64-linux" "aarch64-darwin" ];
imports = [
flake.config.flakeModules.hello
flake.flakeModules.dogfood = {
config.systems = [ "x86_64-linux" "aarch64-darwin" ];
imports = [
topLevel.config.flake.flakeModules.hello
# Expose flake modules
./dogfood.nix
./hello.nix
./anotherFlakeModule.nix
];
options.perSystem = flake-parts-lib.mkPerSystemOption (perSystem: {
apps.default = {
type = "app";
program = "${perSystem.config.packages.hello_22_11}/bin/hello";
};
});
};
})
];
};
# Expose flake modules
./dogfood.nix
./hello.nix
./anotherFlakeModule.nix
];
options.perSystem = flake-parts-lib.mkPerSystemOption (perSystem: {
apps.default = {
type = "app";
program = "${perSystem.config.packages.hello_22_11}/bin/hello";
};
});
};
}
}