nixos/home/emacs/default.nix
Evie Litherland-Smith 20129bc73d Update to emacs29-pgtk
Updated emacs also using native wayland pgtk build
Stop using server as incompatible with pgtk
2023-08-28 10:38:22 +01:00

10 lines
157 B
Nix

{ pkgs, ... }:
let package = pkgs.emacs29-pgtk;
in {
imports = [ ./dependencies.nix ];
programs.emacs = {
inherit package;
enable = true;
};
}