12 lines
131 B
Nix
12 lines
131 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
profile = import ../profile.nix;
|
|
in
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
texliveMedium
|
|
];
|
|
|
|
}
|