1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00
nixpkgs/nixos/modules/programs/calls.nix

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

26 lines
414 B
Nix
Raw Normal View History

2021-07-27 16:13:37 +01:00
{ config, lib, pkgs, ... }:
let
cfg = config.programs.calls;
in {
options = {
programs.calls = {
enable = lib.mkEnableOption ''
GNOME calls: a phone dialer and call handler
2021-07-27 16:13:37 +01:00
'';
};
};
config = lib.mkIf cfg.enable {
programs.dconf.enable = true;
2021-07-27 16:13:37 +01:00
environment.systemPackages = [
pkgs.calls
];
services.dbus.packages = [
pkgs.callaudiod
];
};
}