9 lines
150 B
Nix
9 lines
150 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config.machine.pkgsets.extra.pkgs = with pkgs; [
|
|
imagemagick
|
|
texlive.combined.scheme-full
|
|
transmission
|
|
];
|
|
}
|