Skip to content

Commit 6ece071

Browse files
committed
nix: Add stripe-cli & ngrok for development
1 parent b2084e3 commit 6ece071

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: flake.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@
88
outputs = { self, nixpkgs, ... }@inputs:
99
let
1010
system = "aarch64-darwin";
11-
pkgs = nixpkgs.legacyPackages.${system};
11+
pkgs = import nixpkgs { inherit system; config.allowUnfree = true; };
1212
in {
1313
devShells.${system}.default = pkgs.mkShell {
1414
nativeBuildInputs = with pkgs; [
1515
nodejs_18
1616
corepack
1717

1818
python312
19+
20+
# Webhooks
21+
stripe-cli
22+
ngrok
1923
];
2024
};
2125
};

0 commit comments

Comments
 (0)