diff --git a/modules/flake-parts.nix b/modules/flake-parts.nix index 523ab57..3fe7b76 100644 --- a/modules/flake-parts.nix +++ b/modules/flake-parts.nix @@ -3,7 +3,7 @@ perSystem = { pkgs, ... }: { - packages = lib.mapAttrs (_: f: f pkgs) config.flake-file.apps; + apps = lib.mapAttrs (_: f: { program = f pkgs; }) config.flake-file.apps; checks.check-flake-file = config.flake-file.check-flake-file pkgs; }; }