From e1edefed0a98a3ebf6adafecca0c8ac267717cad Mon Sep 17 00:00:00 2001 From: twoneis Date: Thu, 6 Mar 2025 01:50:36 +0100 Subject: [PATCH] latex in flake --- flake.nix | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 5e8ea96a7..0250f0334 100644 --- a/flake.nix +++ b/flake.nix @@ -4,17 +4,27 @@ flake-utils.url = "github:numtide/flake-utils"; }; - outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachSystem [ - "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" - ] (system: let - pkgs = import nixpkgs { - inherit system; - }; + outputs = { + nixpkgs, + flake-utils, + ... + }: + flake-utils.lib.eachSystem [ + "x86_64-linux" + "i686-linux" + "aarch64-linux" + "x86_64-darwin" + ] (system: let + pkgs = import nixpkgs { + inherit system; + }; in { devShells.default = pkgs.mkShell { packages = with pkgs; [ clang-tools - zig + gcc + texlab + texliveFull ]; }; });