fix emacs packages
This commit is contained in:
parent
da132cde8a
commit
8a671c8658
1 changed files with 3 additions and 3 deletions
|
@ -1,16 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
emacsPkg = pkgs.emacs30-gtk3;
|
||||
emacsPkg = "emacs30";
|
||||
in {
|
||||
services.emacs = {
|
||||
enable = true;
|
||||
package = emacsPkg;
|
||||
package = pkgs."${emacsPkg}";
|
||||
defaultEditor = true;
|
||||
};
|
||||
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
package = emacsPkg;
|
||||
package = pkgs."${emacsPkg}-pgtk";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue