[NixOS] Add tex installation

This commit is contained in:
Ivan Malison 2018-06-24 16:40:02 -07:00
parent 4d666e0e0e
commit e91fe46cdb
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
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 ];
}

View File

@ -5,6 +5,7 @@
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
../configuration.nix
../games.nix
../extra.nix
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];

View File

@ -4,6 +4,8 @@
imports = [
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
../configuration.nix
../games.nix
../extra.nix
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];