mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
tex: move to own modules
This commit is contained in:
parent
2e8e3ada22
commit
61f3684c96
3 changed files with 9 additions and 6 deletions
|
@ -12,6 +12,7 @@
|
|||
./spotify
|
||||
./ssh
|
||||
./theme
|
||||
./tex
|
||||
./packages.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
8
users/rouven/modules/tex/default.nix
Normal file
8
users/rouven/modules/tex/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
(pkgs.texlive.combine {
|
||||
inherit (pkgs.texlive) scheme-full;
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue