From b0c1c7d966a68e545aa5a01f038915efe14a26a6 Mon Sep 17 00:00:00 2001 From: Sam Willcocks Date: Mon, 11 Jul 2022 13:39:48 +0100 Subject: [PATCH] Add mosquitto to devshell --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9260c98..0dab855 100644 --- a/flake.nix +++ b/flake.nix @@ -32,14 +32,19 @@ in pkgs.mkShell { buildInputs = with pkgs; [ + # Dhall (config) stuff dhall + dhall-lsp-server + # Rust! (rust-bin.stable.latest.default.override { extensions = ["rls"]; }) + # Build requirements pkg-config libusb openssl - dhall-lsp-server + # Utils + mosquitto # So we can poke mqtt ]; }; formatter = pkgs.alejandra;