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:
parent
a13fbf2b39
commit
d30b7b26d0
1 changed files with 17 additions and 26 deletions
|
@ -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";
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue