fix
This commit is contained in:
parent
e986fee7ee
commit
136d8231cb
2 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@
|
||||||
emacs = {
|
emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
daemon = false;
|
daemon = false;
|
||||||
type = "pkgs.emacs-unstable-pgtk";
|
package = pkgs.emacs-unstable-pgtk;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
cc.enable = true;
|
cc.enable = true;
|
||||||
|
|
|
@ -26,7 +26,7 @@ in {
|
||||||
options.modules.dev.editors.emacs = {
|
options.modules.dev.editors.emacs = {
|
||||||
enable = mkEnableOption false;
|
enable = mkEnableOption false;
|
||||||
daemon = mkEnableOption true;
|
daemon = mkEnableOption true;
|
||||||
type = mkOption {
|
package = mkOption {
|
||||||
type = pkg;
|
type = pkg;
|
||||||
default = pkgs.emacs-unstable;
|
default = pkgs.emacs-unstable;
|
||||||
description = "pkgs. followed by the name of the emacs overlay package";
|
description = "pkgs. followed by the name of the emacs overlay package";
|
||||||
|
|
Loading…
Reference in a new issue