Skip to content

Commit

Permalink
chore: format flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
mookums committed Mar 6, 2025
1 parent f46cea0 commit da2a00c
Showing 1 changed file with 25 additions and 16 deletions.
41 changes: 25 additions & 16 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,30 @@
flake-utils.url = "github:numtide/flake-utils";
};

outputs = {
nixpkgs,
iguana,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
iguanaLib = iguana.lib.${system};
in {
devShells.default = iguanaLib.mkShell {
zigVersion = "0.13.0";
withZls = true;
outputs =
{
nixpkgs,
iguana,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
iguanaLib = iguana.lib.${system};
in
{
devShells.default = iguanaLib.mkShell {
zigVersion = "0.13.0";
withZls = true;

extraPackages = with pkgs; [openssl inetutils wrk];
};
});
extraPackages = with pkgs; [
openssl
inetutils
wrk
];
};
}
);
}

0 comments on commit da2a00c

Please sign in to comment.