nixos/programs/emacs.nix

24 lines
464 B
Nix
Raw Normal View History

2024-06-16 10:10:36 +00:00
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
(aspellWithDicts (ds: with ds; [ en en-computers da ]))
zip
unzip
texlive.combined.scheme-medium
];
services.emacs = {
enable = true;
client = {
enable = true;
arguments = [" --create-frame"];
};
startWithUserSession = true;
};
programs.emacs = {
enable = true;
package = pkgs.emacs29-pgtk;
extraPackages = epkgs: [ epkgs.vterm ];
};
}