switch emacs package
This commit is contained in:
parent
d609d09eb6
commit
b2a47266d8
1 changed files with 5 additions and 3 deletions
|
@ -1,14 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
let
|
||||
emacsPkg = pkgs.emacs30-gtk;
|
||||
in {
|
||||
services.emacs = {
|
||||
enable = true;
|
||||
package = pkgs.emacs;
|
||||
package = emacsPkg;
|
||||
defaultEditor = true;
|
||||
};
|
||||
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
package = pkgs.emacs;
|
||||
package = emacsPkg;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue