From c047d7d26c6bad97c09aae12093804dc565351f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Chocholat=C3=BD?= Date: Fri, 27 Mar 2026 09:36:53 +0100 Subject: [PATCH] feat: Expose `flake-file.apps` as flake outputs `apps` instead of `packages` --- modules/flake-parts.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; }