Maybe actually fix builds

This commit is contained in:
StealthBadger747
2025-07-15 12:32:54 -07:00
committed by Aarnav Tale
parent 7a34a01dd0
commit 8b3d0e9bb6
3 changed files with 53 additions and 25 deletions
+4 -2
View File
@@ -29,7 +29,8 @@ rec {
in rec {
formatter = pkgs.alejandra;
packages = {
headplane = pkgs.callPackage ./nix/package.nix {};
hp_ssh_wasm = pkgs.callPackage ./nix/wasm.nix {};
headplane = pkgs.callPackage ./nix/package.nix { hp_ssh_wasm = packages.hp_ssh_wasm; };
headplane-agent = pkgs.callPackage ./nix/agent.nix {};
};
checks.default = pkgs.symlinkJoin {
@@ -61,7 +62,8 @@ rec {
})
// {
overlays.default = final: prev: {
headplane = final.callPackage ./nix/package.nix {};
hp_ssh_wasm = final.callPackage ./nix/wasm.nix {};
headplane = final.callPackage ./nix/package.nix { hp_ssh_wasm = final.hp_ssh_wasm; };
headplane-agent = final.callPackage ./nix/agent.nix {};
};
nixosModules.headplane = import ./nix/module.nix;