Implement path loading

Got the build working

Maybe actually fix builds

Copy drizzle as well
This commit is contained in:
Erik Parawell
2025-07-11 18:49:43 -07:00
committed by Aarnav Tale
parent 7691f74d43
commit 5cfd9e411b
12 changed files with 1021 additions and 61 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;