mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-31 04:04:55 +00:00
Update dev.nix
This commit is contained in:
parent
08d2ea15a6
commit
478396adb9
1 changed files with 9 additions and 7 deletions
|
@ -3,16 +3,18 @@ rec {
|
|||
imports = [
|
||||
inputs.flake-parts.flakeModules.flakeModules
|
||||
flake.flakeModules.dev
|
||||
|
||||
# Use file name to dogfood a flake module defined from the current flake to avoid infinite recursion
|
||||
./hello.nix
|
||||
];
|
||||
flake.flakeModules.dev = dev: {
|
||||
config.systems = [ "x86_64-linux" "aarch64-darwin" ];
|
||||
imports = [
|
||||
(
|
||||
if topLevel.moduleLocation == dev.moduleLocation
|
||||
then ./hello.nix # Use file name to dogfood a flake module defined from the current flake to avoid infinite recursion
|
||||
else topLevel.config.flake.flakeModules.hello # Use attributes to reference the flake module from other flakes
|
||||
)
|
||||
imports = lib.lists.optionals (topLevel.moduleLocation != dev.moduleLocation) [
|
||||
# Use attributes to reference the flake module from other flakes
|
||||
topLevel.config.flake.flakeModules.hello
|
||||
];
|
||||
|
||||
config.systems = [ "x86_64-linux" "aarch64-darwin" ];
|
||||
|
||||
options.perSystem = flake-parts-lib.mkPerSystemOption ({pkgs, ...}@perSystem: {
|
||||
devShells.default = pkgs.mkShell {
|
||||
buildInputs = [ perSystem.config.packages.hello_22_11 ];
|
||||
|
|
Loading…
Add table
Reference in a new issue