mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 07:48:14 +00:00
Implement path loading
Got the build working Maybe actually fix builds Copy drizzle as well
This commit is contained in:
committed by
Aarnav Tale
parent
7691f74d43
commit
5cfd9e411b
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user