This commit is contained in:
Alexander Svan
2025-09-19 16:15:34 +02:00
parent 34faa762fa
commit a2436f6321

21
flake.nix Normal file
View File

@@ -0,0 +1,21 @@
{
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
];
};
};
}