mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
emacs: make service package configurable
This commit is contained in:
parent
7b6ebf2785
commit
a3a0f1289a
1 changed files with 17 additions and 14 deletions
|
@ -6,8 +6,8 @@ let
|
|||
|
||||
cfg = config.services.emacs;
|
||||
emacsCfg = config.programs.emacs;
|
||||
emacsBinPath = "${emacsCfg.finalPackage}/bin";
|
||||
emacsVersion = getVersion emacsCfg.finalPackage;
|
||||
emacsBinPath = "${cfg.package}/bin";
|
||||
emacsVersion = getVersion cfg.package;
|
||||
|
||||
# Adapted from upstream emacs.desktop
|
||||
clientDesktopItem = pkgs.writeTextDir "share/applications/emacsclient.desktop"
|
||||
|
@ -51,6 +51,16 @@ in {
|
|||
options.services.emacs = {
|
||||
enable = mkEnableOption "the Emacs daemon";
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = if emacsCfg.enable then emacsCfg.finalPackage else pkgs.emacs;
|
||||
defaultText = literalExample ''
|
||||
if config.programs.emacs.enable then config.programs.emacs.finalPackage
|
||||
else pkgs.emacs
|
||||
'';
|
||||
description = "The Emacs package to use.";
|
||||
};
|
||||
|
||||
client = {
|
||||
enable = mkEnableOption "generation of Emacs client desktop file";
|
||||
arguments = mkOption {
|
||||
|
@ -72,18 +82,11 @@ in {
|
|||
|
||||
config = mkIf cfg.enable (mkMerge [
|
||||
{
|
||||
assertions = [
|
||||
{
|
||||
assertion = emacsCfg.enable;
|
||||
message = "The Emacs service module requires"
|
||||
+ " 'programs.emacs.enable = true'.";
|
||||
}
|
||||
{
|
||||
assertion = cfg.socketActivation.enable
|
||||
-> versionAtLeast emacsVersion "26";
|
||||
message = "Socket activation requires Emacs 26 or newer.";
|
||||
}
|
||||
];
|
||||
assertions = [{
|
||||
assertion = cfg.socketActivation.enable
|
||||
-> versionAtLeast emacsVersion "26";
|
||||
message = "Socket activation requires Emacs 26 or newer.";
|
||||
}];
|
||||
|
||||
systemd.user.services.emacs = {
|
||||
Unit = {
|
||||
|
|
Loading…
Reference in a new issue