mirror of
https://github.com/mdlayher/homelab.git
synced 2024-12-15 17:50:54 +00:00
nixos/routnerr-2: enable NM/MM again
This commit is contained in:
parent
ebd8457e2f
commit
cd2da7931d
1 changed files with 13 additions and 0 deletions
|
@ -234,6 +234,19 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
# Use NM/MM only to manage the LTE modem.
|
||||
networking.networkmanager = {
|
||||
enable = true;
|
||||
dns = "systemd-resolved";
|
||||
unmanaged = [ "*,except:type:gsm" ];
|
||||
};
|
||||
|
||||
# Bring up MM and exporter with NM.
|
||||
systemd.services.ModemManager = {
|
||||
enable = true;
|
||||
wantedBy = [ "NetworkManager.service" ];
|
||||
};
|
||||
|
||||
services.tailscale = {
|
||||
enable = false;
|
||||
package = unstable.tailscale;
|
||||
|
|
Loading…
Reference in a new issue