nixpkgs/nixos/modules/services/networking/ofono.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
839 B
Nix
Raw Normal View History

2019-08-23 15:59:50 +00:00
# Ofono daemon.
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.ofono;
plugin_path =
lib.concatMapStringsSep ":"
(plugin: "${plugin}/lib/ofono/plugins")
cfg.plugins
;
in
2019-08-23 15:59:50 +00:00
{
###### interface
options = {
services.ofono = {
enable = mkEnableOption (lib.mdDoc "Ofono");
plugins = mkOption {
type = types.listOf types.package;
default = [];
example = literalExpression "[ pkgs.modem-manager-gui ]";
description = lib.mdDoc ''
The list of plugins to install.
'';
};
2019-08-23 15:59:50 +00:00
};
};
###### implementation
config = mkIf cfg.enable {
2019-08-23 15:59:50 +00:00
services.dbus.packages = [ pkgs.ofono ];
systemd.packages = [ pkgs.ofono ];
systemd.services.ofono.environment.OFONO_PLUGIN_PATH = mkIf (cfg.plugins != []) plugin_path;
2019-08-23 15:59:50 +00:00
};
}