9 lines
189 B
Nix
9 lines
189 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
|
|
in
|
|
{ # home-manager
|
|
home.packages = with pkgs; [
|
|
(texlive.combine { inherit (texlive) scheme-full xifthen ifmtarg framed paralist titlesec xcolor; })
|
|
];
|
|
} |