From 908ca7a4596a2e9d32aa366874b7b0525ebd0e3e Mon Sep 17 00:00:00 2001 From: unexplrd Date: Fri, 24 Apr 2026 20:21:54 +0300 Subject: [PATCH] Fix the desktop app entrypoint - Point the flake app at the `t3code` binary - Keep `default` mapped to `t3code-desktop` --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 28f2d3f..52081a2 100644 --- a/flake.nix +++ b/flake.nix @@ -42,7 +42,7 @@ }; t3code-desktop = { type = "app"; - program = "${self.packages.${system}.t3code-desktop}/bin/t3code-desktop"; + program = "${self.packages.${system}.t3code-desktop}/bin/t3code"; }; default = t3code-desktop; });