8 lines
205 B
Nix
Executable File
8 lines
205 B
Nix
Executable File
{ config, pkgs, lib, host, ... }:
|
|
lib.mkIf (host != "NxACE")
|
|
{
|
|
home.packages = with pkgs; [
|
|
(texlive.combine { inherit (texlive) scheme-full xifthen ifmtarg framed paralist titlesec xcolor; })
|
|
];
|
|
}
|