Files
contextual-rag-n8n/flake.nix
Alexander Svan a2436f6321 nix dev
2025-09-19 16:15:34 +02:00

22 lines
433 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
];
};
};
}