This commit is contained in:
Till 2023-05-16 15:11:21 +02:00
parent 52f9b876b5
commit e40cd3e583
10 changed files with 133 additions and 25 deletions

13
tex.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
let
tex = (pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-medium
sourcesanspro
});
in
{ # home-manager
home.packages = with pkgs; [
tex
];
}