From 1dfbded739a0d1fa4d6be85012b6ac729d5f2e4a Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L. de Mello" Date: Wed, 24 Apr 2024 15:15:57 -0300 Subject: [PATCH] chore: format flake.nix --- flake.nix | 52 ++++++++++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/flake.nix b/flake.nix index 9c7a28d..0b7fc68 100644 --- a/flake.nix +++ b/flake.nix @@ -5,26 +5,34 @@ rust-overlay.url = "github:oxalica/rust-overlay"; flake-utils.url = "github:numtide/flake-utils"; }; - outputs = { self, nixpkgs, flake-utils, rust-overlay }: - flake-utils.lib.eachDefaultSystem (system: - let - overlays = [ (import rust-overlay) ]; - pkgs = import nixpkgs { - inherit system overlays; - }; - in - { - devShells.default = pkgs.mkShell { - buildInputs = with pkgs; [ - openssl - pkg-config - eza - fd - (rust-bin.stable.latest.default.override { - extensions = [ "rust-src" ]; - }) - rust-analyzer - ]; - }; - }); + outputs = { + self, + nixpkgs, + flake-utils, + rust-overlay, + }: + flake-utils.lib.eachDefaultSystem (system: let + overlays = [(import rust-overlay)]; + pkgs = import nixpkgs { + inherit system overlays; + }; + in { + devShells.default = pkgs.mkShell { + buildInputs = with pkgs; [ + openssl + pkg-config + eza + fd + (rust-bin.stable.latest.default.override { + extensions = ["rust-src"]; + }) + rust-analyzer + jq + vhs + ffmpeg + ttyd + glow + ]; + }; + }); }