summary refs log blame commit diff
path: root/nixos/modules/services/networking/ofono.nix
blob: 40ef9433de0fb5e9c52426036668ed848eea2b0d (plain) (tree)
1
2
3
4
5




                           











                                             




                                      








                                                              



                       
                            


                                            


                                                                                                

    
# 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 "Ofono";

      plugins = mkOption {
        type = types.listOf types.package;
        default = [];
        example = literalExample "[ pkgs.modem-manager-gui ]";
        description = ''
          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;

  };
}