phone: Explicitly disable pipewire

Somehow pipewire got enabled by something else in the config. By
explicitly disabling it, we're able to make phone calls work again.
This commit is contained in:
Donovan Glover 2024-06-26 23:57:01 -04:00
parent 99a570f9a4
commit c28411e747
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,4 +1,4 @@
{ self, pkgs, ... }:
{ self, pkgs, lib, ... }:
let
inherit (builtins) attrValues;
@ -53,6 +53,8 @@ in
calls.enable = true;
};
services.pipewire.enable = lib.mkForce false;
networking = {
wireless.enable = false;
wireguard.enable = true;