15 lines
229 B
Nix
15 lines
229 B
Nix
{ lib, config, pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
kitty
|
|
me-emacs
|
|
rnix-lsp
|
|
texlive.combined.scheme-full
|
|
pandoc
|
|
libreoffice-qt
|
|
pandoc
|
|
ispell
|
|
# Fonts
|
|
julia-mono
|
|
];
|
|
}
|