From 191ab5140d38f6c3fda005bb3e08ccbb9d6f2edb Mon Sep 17 00:00:00 2001 From: Alexander Svan Date: Mon, 22 Sep 2025 08:47:43 +0200 Subject: [PATCH] asd --- flake.lock | 26 ++++++++++++++++++++++++++ flake.nix | 5 ++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 flake.lock diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..bde1a69 --- /dev/null +++ b/flake.lock @@ -0,0 +1,26 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1758198701, + "narHash": "sha256-7To75JlpekfUmdkUZewnT6MoBANS0XVypW6kjUOXQwc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0147c2f1d54b30b5dd6d4a8c8542e8d7edf93b5d", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix index 4f9bf0d..c0b364f 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,10 @@ in pkgs.mkShell { buildInputs = with pkgs; [ - azure-cli + (azure-cli.withExtensions [ + azure-cli.extensions.bastion + azure-cli.extensions.ssh + ]) ]; }; };