[NixOS] Add tex installation

This commit is contained in:
2018-06-24 16:40:02 -07:00
parent 4d666e0e0e
commit e91fe46cdb
3 changed files with 10 additions and 0 deletions

7
nixos/extra.nix Normal file
View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
texlive.combined.scheme-full
];
boot.extraModulePackages = with pkgs; [ xboxdrv ];
}