Evie Litherland-Smith
20129bc73d
Updated emacs also using native wayland pgtk build Stop using server as incompatible with pgtk
10 lines
157 B
Nix
10 lines
157 B
Nix
{ pkgs, ... }:
|
|
let package = pkgs.emacs29-pgtk;
|
|
in {
|
|
imports = [ ./dependencies.nix ];
|
|
programs.emacs = {
|
|
inherit package;
|
|
enable = true;
|
|
};
|
|
}
|