Update the configuration README

Revert flake.nix and package.nix to main; drop wasm.nix
This commit is contained in:
StealthBadger747
2025-07-30 18:28:48 +05:00
committed by Aarnav Tale
parent 5cfd9e411b
commit 5ab9686460
4 changed files with 56 additions and 57 deletions
+2 -4
View File
@@ -29,8 +29,7 @@ rec {
in rec {
formatter = pkgs.alejandra;
packages = {
hp_ssh_wasm = pkgs.callPackage ./nix/wasm.nix {};
headplane = pkgs.callPackage ./nix/package.nix { hp_ssh_wasm = packages.hp_ssh_wasm; };
headplane = pkgs.callPackage ./nix/package.nix {};
headplane-agent = pkgs.callPackage ./nix/agent.nix {};
};
checks.default = pkgs.symlinkJoin {
@@ -62,8 +61,7 @@ rec {
})
// {
overlays.default = final: prev: {
hp_ssh_wasm = final.callPackage ./nix/wasm.nix {};
headplane = final.callPackage ./nix/package.nix { hp_ssh_wasm = final.hp_ssh_wasm; };
headplane = final.callPackage ./nix/package.nix {};
headplane-agent = final.callPackage ./nix/agent.nix {};
};
nixosModules.headplane = import ./nix/module.nix;