aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/services/asterisk.nix
blob: 0c012bd44d2340e2c1cee38103a4ec22e4c74320 (plain)
1
2
3
4
5
6
7
8
{ lib, ... }:
{
  services.asterisk = {
    enable = true;
  };

  systemd.services.asterisk.wantedBy = lib.mkForce [];
}