diff --git a/backend/flake.lock b/backend/flake.lock index e66818b..da663de 100644 --- a/backend/flake.lock +++ b/backend/flake.lock @@ -77,11 +77,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1756542300, - "narHash": "sha256-tlOn88coG5fzdyqz6R93SQL5Gpq+m/DsWpekNFhqPQk=", + "lastModified": 1757487488, + "narHash": "sha256-zwE/e7CuPJUWKdvvTCB7iunV4E/+G0lKfv4kk/5Izdg=", "owner": "nixos", "repo": "nixpkgs", - "rev": "d7600c775f877cd87b4f5a831c28aa94137377aa", + "rev": "ab0f3607a6c7486ea22229b92ed2d355f1482ee0", "type": "github" }, "original": { diff --git a/backend/flake.nix b/backend/flake.nix index e9188d0..2a8af0c 100644 --- a/backend/flake.nix +++ b/backend/flake.nix @@ -1,5 +1,5 @@ { - description = "lead-rust"; + description = "lead"; inputs = { naersk.url = "github:nix-community/naersk"; @@ -28,6 +28,11 @@ nativeBuildInputs = nativeBuildInputs; }; + apps.${system}.default = { + type = "app"; + program = "${self.packages.${system}.default}/bin/lead"; + }; + devShells.${system}.default = pkgs.mkShell { inputsFrom = [self.packages.${system}.default];