mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
12 lines
236 B
Nix
12 lines
236 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
|
|
in
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
unstable.jabref
|
|
biber
|
|
texlive.combined.scheme-full
|
|
texstudio
|
|
];
|
|
}
|