aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/networking/ofono.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/networking/ofono.nix')
-rw-r--r--nixpkgs/nixos/modules/services/networking/ofono.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/services/networking/ofono.nix b/nixpkgs/nixos/modules/services/networking/ofono.nix
new file mode 100644
index 00000000000..40ef9433de0
--- /dev/null
+++ b/nixpkgs/nixos/modules/services/networking/ofono.nix
@@ -0,0 +1,44 @@
+# 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;
+
+ };
+}