1
0
Fork 0
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:
Yang, Bo 2023-11-03 11:21:50 -07:00 committed by GitHub
parent 08d2ea15a6
commit 478396adb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];