From af6ed084c724bd65fc3b40834931ab1f9a4564f0 Mon Sep 17 00:00:00 2001 From: krovuxdev <62192487+krovuxdev@users.noreply.github.com> Date: Sat, 10 Aug 2024 19:13:58 -0500 Subject: [PATCH] fix: Refactor apps configuration to explicitly define program path and type --- default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index a37ae8c..297c8ff 100644 --- a/default.nix +++ b/default.nix @@ -57,8 +57,11 @@ in { # `nix run` apps = rec { - simpleCommits = simpleCommitsPkg.app; - default = simpleCommits; + simpleCommits = simpleCommitsPkg.pkg; + default = { + program = "${simpleCommits}/bin/sc"; + type = "app"; + }; }; # `nix build` packages = rec {