Fix regression in Nix Flake

In PR #105, a regression was introduced into the nix flake
which disabled consumers from access the package.

This pr fixes that regression.

Additionally adds a nix smoke test for a backstop against this in the future
This commit is contained in:
Zoe Gagnon
2025-10-22 22:15:44 -04:00
parent 73bacf4e95
commit 474f62c6f2
2 changed files with 21 additions and 1 deletions
+1 -1
View File
@@ -25,7 +25,7 @@
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages.default = pkgs.callPackage { inherit pkgs self; };
packages.default = pkgs.callPackage ./default.nix { inherit pkgs self; };
apps.default = {
type = "app";