mirror of
https://github.com/Infisical/infisical.git
synced 2025-03-24 00:15:26 +00:00
25 lines
488 B
Nix
25 lines
488 B
Nix
{
|
|
description = "Flake for github:Infisical/infisical repository.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
};
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
devShells.aarch64-darwin.default = let
|
|
pkgs = nixpkgs.legacyPackages.aarch64-darwin;
|
|
in
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
git
|
|
lazygit
|
|
|
|
python312Full
|
|
nodejs_20
|
|
nodePackages.prettier
|
|
infisical
|
|
];
|
|
};
|
|
};
|
|
}
|