Files
contextual-rag-n8n/flake.nix
Alexander Svan 191ab5140d asd
2025-09-22 08:47:43 +02:00

25 lines
545 B
Nix

{
description = "A flake for Azure development";
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: {
devShells.x86_64-linux.default =
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
pkgs.mkShell {
buildInputs = with pkgs; [
(azure-cli.withExtensions [
azure-cli.extensions.bastion
azure-cli.extensions.ssh
])
];
};
};
}