1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-26 21:19:45 +01:00

emacs: allow custom Emacs package

This commit is contained in:
Robert Helgesson 2017-09-19 23:32:01 +02:00
parent e4deffcbe8
commit 76e0e09aca
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -6,6 +6,10 @@ let
cfg = config.programs.emacs;
# Copied from all-packages.nix.
emacsPackages = pkgs.emacsPackagesNgGen cfg.package;
emacsWithPackages = emacsPackages.emacsWithPackages;
in
{
@ -13,6 +17,14 @@ in
programs.emacs = {
enable = mkEnableOption "Emacs";
package = mkOption {
type = types.package;
default = pkgs.emacs;
defaultText = "pkgs.emacs";
example = literalExample "pkgs.emacs25-nox";
description = "The Emacs package to use.";
};
extraPackages = mkOption {
default = self: [];
example = literalExample ''
@ -24,6 +36,6 @@ in
};
config = mkIf cfg.enable {
home.packages = [ (pkgs.emacsWithPackages cfg.extraPackages) ];
home.packages = [ (emacsWithPackages cfg.extraPackages) ];
};
}