81047829ea
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
27 lines
436 B
Nix
27 lines
436 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.calls;
|
|
in {
|
|
options = {
|
|
programs.calls = {
|
|
enable = mkEnableOption ''
|
|
Whether to enable GNOME calls: a phone dialer and call handler.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.dconf.enable = true;
|
|
|
|
environment.systemPackages = [
|
|
pkgs.calls
|
|
];
|
|
|
|
services.dbus.packages = [
|
|
pkgs.callaudiod
|
|
];
|
|
};
|
|
}
|