latex in flake
This commit is contained in:
parent
d3154c077c
commit
e1edefed0a
1 changed files with 17 additions and 7 deletions
16
flake.nix
16
flake.nix
|
@ -4,8 +4,16 @@
|
|||
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"
|
||||
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;
|
||||
|
@ -14,7 +22,9 @@
|
|||
devShells.default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
clang-tools
|
||||
zig
|
||||
gcc
|
||||
texlab
|
||||
texliveFull
|
||||
];
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue