diff --git a/template/dogfood/modules/dev.nix b/template/dogfood/modules/dev.nix index 8fdcb66..216e148 100644 --- a/template/dogfood/modules/dev.nix +++ b/template/dogfood/modules/dev.nix @@ -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 ];