13 lines
193 B
Nix
13 lines
193 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
tex = (pkgs.texlive.combine {
|
|
inherit (pkgs.texlive) scheme-medium
|
|
sourcesanspro
|
|
});
|
|
in
|
|
{ # home-manager
|
|
home.packages = with pkgs; [
|
|
tex
|
|
];
|
|
}
|