From c7b32af8be93d7a5699bf3c5627b89d2dc24ecb7 Mon Sep 17 00:00:00 2001 From: Ricard Illa Date: Thu, 25 Aug 2022 08:49:37 +0200 Subject: [PATCH] linode-cli on nix shell --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index abe7958..195a070 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,8 @@ let pkgs = nixpkgs.legacyPackages.${system}; in { devShell = pkgs.mkShell { - nativeBuildInputs = [ pkgs.bashInteractive pkgs.terraform ]; + nativeBuildInputs = + [ pkgs.bashInteractive pkgs.terraform pkgs.linode-cli ]; buildInputs = [ ]; }; });