mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
shells/latex: init shell
This commit is contained in:
parent
0acead3887
commit
192a9b6e1d
@ -12,6 +12,7 @@ with pkgs; {
|
|||||||
gtk3 = callPackage ./gtk.nix { gtk = gtk3; libportal-gtk = libportal-gtk3; };
|
gtk3 = callPackage ./gtk.nix { gtk = gtk3; libportal-gtk = libportal-gtk3; };
|
||||||
gtk4 = callPackage ./gtk.nix { gtk = gtk4; wrapGAppsHook = wrapGAppsHook4; libportal-gtk = libportal-gtk4; };
|
gtk4 = callPackage ./gtk.nix { gtk = gtk4; wrapGAppsHook = wrapGAppsHook4; libportal-gtk = libportal-gtk4; };
|
||||||
hugo = callPackage ./hugo.nix { };
|
hugo = callPackage ./hugo.nix { };
|
||||||
|
latex = callPackage ./latex.nix { };
|
||||||
lua_5_2 = callPackage ./lua.nix { lua = lua52Packages.lua; };
|
lua_5_2 = callPackage ./lua.nix { lua = lua52Packages.lua; };
|
||||||
lua_5_3 = callPackage ./lua.nix { lua = lua53Packages.lua; };
|
lua_5_3 = callPackage ./lua.nix { lua = lua53Packages.lua; };
|
||||||
rust = callPackage ./rust.nix { };
|
rust = callPackage ./rust.nix { };
|
||||||
|
8
shells/latex.nix
Normal file
8
shells/latex.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Ripperootskees for the space.
|
||||||
|
{ mkShell, texlive }:
|
||||||
|
|
||||||
|
mkShell {
|
||||||
|
packages = [
|
||||||
|
texlive.combined.scheme-full
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user