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