mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
15 lines
162 B
Nix
15 lines
162 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
config = {
|
|
environment.systemPackages = with pkgs; [
|
|
fontconfig
|
|
texliveFull
|
|
texstudio
|
|
];
|
|
};
|
|
}
|