25 lines
545 B
Nix
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
|
|
])
|
|
];
|
|
};
|
|
};
|
|
}
|