6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ pkgs, lib, config, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.services.mmsd;
|
|
dbusServiceFile = pkgs.writeTextDir "share/dbus-1/services/org.ofono.mms.service" ''
|
|
[D-BUS Service]
|
|
Name=org.ofono.mms
|
|
SystemdService=dbus-org.ofono.mms.service
|
|
|
|
# Exec= is still required despite SystemdService= being used:
|
|
# https://github.com/freedesktop/dbus/blob/ef55a3db0d8f17848f8a579092fb05900cc076f5/test/data/systemd-activation/com.example.SystemdActivatable1.service
|
|
Exec=${pkgs.coreutils}/bin/false mmsd
|
|
'';
|
|
in
|
|
{
|
|
options.services.mmsd = {
|
|
enable = mkEnableOption "Multimedia Messaging Service Daemon";
|
|
extraArgs = mkOption {
|
|
type = with types; listOf str;
|
|
description = "Extra arguments passed to `mmsd-tng`";
|
|
default = [];
|
|
example = ["--debug"];
|
|
};
|
|
};
|
|
config = mkIf cfg.enable {
|
|
services.dbus.packages = [ dbusServiceFile ];
|
|
systemd.user.services.mmsd = {
|
|
after = [ "ModemManager.service" ];
|
|
aliases = [ "dbus-org.ofono.mms.service" ];
|
|
serviceConfig = {
|
|
Type = "dbus";
|
|
ExecStart = "${pkgs.mmsd-tng}/bin/mmsdtng " + escapeShellArgs cfg.extraArgs;
|
|
BusName = "org.ofono.mms";
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
}
|