about summary refs log tree commit diff
path: root/machines/sternenseemann/pkgs.nix
blob: 6f0beb367c6a32f49a80b5b95dbdb1cfcbb4e45e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, lib }:

let

  mpv = pkgs.mpv.override { scripts = [ pkgs.mpvScripts.convert ]; };

  texlive = with pkgs.texlive; combine { inherit scheme-medium minted units collection-bibtexextra wrapfig libertine; };

  urxvt = pkgs.rxvt_unicode-with-plugins.override { plugins = [ pkgs.urxvt_perls ]; };

in { inherit mpv texlive urxvt; }