añade shenv de tex

This commit is contained in:
Fabián Montero 2022-08-29 23:10:29 -06:00
parent 55c13fc473
commit 65ff9d2d0d
5 changed files with 30 additions and 0 deletions

View file

@ -1,5 +1,7 @@
{pkgs, ...} : {pkgs, ...} :
{ {
static = true;
packages = with pkgs; [ packages = with pkgs; [
binutils binutils
cmake cmake

View file

@ -1,5 +1,7 @@
{pkgs, ...}: {pkgs, ...}:
{ {
static = true;
packages = with pkgs; [ packages = with pkgs; [
(octave.withPackages (packages: with packages; [ (octave.withPackages (packages: with packages; [
symbolic symbolic

View file

@ -1,5 +1,7 @@
{pkgs, ...}: {pkgs, ...}:
{ {
static = true;
packages = with pkgs; [ packages = with pkgs; [
pipenv pipenv
(python310.withPackages ( packages: with packages; [ (python310.withPackages ( packages: with packages; [

View file

@ -1,5 +1,7 @@
{pkgs, ... }: {pkgs, ... }:
{ {
static = true;
packages = with pkgs; [ packages = with pkgs; [
pipenv pipenv
(python310.withPackages ( packages: with packages; [ (python310.withPackages ( packages: with packages; [

22
home/shenvs/tex.nix Normal file
View file

@ -0,0 +1,22 @@
{ pkgs, ... }:
{
static = true;
packages = with pkgs; [
biber
(texlive.combine {
inherit (texlive)
appendix
scheme-medium
biblatex
biblatex-ieee
cleveref
csquotes
enumitem
ieeetran
titlesec
titling
zref;
})
];
}