fix: unbound var

This commit is contained in:
2026-06-08 13:15:57 +02:00
parent 5ceff7e0a3
commit 937a4f1514
2 changed files with 6 additions and 2 deletions
+1 -2
View File
@@ -13,14 +13,13 @@ outputs = { self, nixpkgs, flake-utils}:
in {
packages.default = pkgs.writeShellApplication {
name = "ngcp";
text = ./ngcp.sh;
text = builtins.readFile ./ngcp.sh;
runtimeInputs = with pkgs; [
git
libnotify
jq
];
};
mainProgram = "ngpcp";
apps.default = {
type = "app";
program = "${self.packages.${system}.default}/bin/ngcp";