nixos/extra/tex.nix

13 lines
236 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
unstable.jabref
biber
texlive.combined.scheme-full
texstudio
];
}