chore: nix: nix fmt

This commit is contained in:
Igor Ramazanov
2025-07-27 02:18:50 +00:00
committed by Aarnav Tale
parent 441e31690b
commit d257b22f91
3 changed files with 67 additions and 66 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ 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 {hp_ssh_wasm = packages.hp_ssh_wasm;};
headplane-agent = pkgs.callPackage ./nix/agent.nix {};
};
checks.default = pkgs.symlinkJoin {
@@ -63,7 +63,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 {hp_ssh_wasm = final.hp_ssh_wasm;};
headplane-agent = final.callPackage ./nix/agent.nix {};
};
nixosModules.headplane = import ./nix/module.nix;