7 lines
192 B
Nix
7 lines
192 B
Nix
{ pkgs, ... }@all: with all; {
|
|
home.packages = with pkgs; [
|
|
texlab # LSP
|
|
(texlive.combine { inherit (texlive) scheme-full xifthen ifmtarg framed paralist titlesec xcolor; })
|
|
];
|
|
}
|