1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-03-02 04:50:56 +01:00
nixos-config/users/rouven/modules/tex/default.nix

9 lines
121 B
Nix
Raw Normal View History

2023-11-25 23:25:38 +01:00
{ pkgs, ... }:
{
home.packages = [
(pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-full;
})
];
}