ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
44 lines
839 B
Nix
44 lines
839 B
Nix
# Ofono daemon.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.ofono;
|
|
|
|
plugin_path =
|
|
lib.concatMapStringsSep ":"
|
|
(plugin: "${plugin}/lib/ofono/plugins")
|
|
cfg.plugins
|
|
;
|
|
|
|
in
|
|
|
|
{
|
|
###### 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.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = mkIf cfg.enable {
|
|
services.dbus.packages = [ pkgs.ofono ];
|
|
|
|
systemd.packages = [ pkgs.ofono ];
|
|
|
|
systemd.services.ofono.environment.OFONO_PLUGIN_PATH = mkIf (cfg.plugins != []) plugin_path;
|
|
|
|
};
|
|
}
|