tex: move to own modules

This commit is contained in:
Rouven Seifert 2023-11-25 23:25:38 +01:00
parent 2e8e3ada22
commit 61f3684c96
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 9 additions and 6 deletions

View file

@ -12,6 +12,7 @@
./spotify
./ssh
./theme
./tex
./packages.nix
];
}

View file

@ -1,9 +1,4 @@
{ pkgs, ... }:
let
tex = (pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-full;
});
in
{
home.packages = with pkgs; [
@ -17,7 +12,6 @@ in
wpa_supplicant_gui
pcmanfm
xdg-utils # used for xdg-open
tex
appimage-run
seafile-client

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = [
(pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-full;
})
];
}