diff options
author | lassulus <git@lassul.us> | 2023-01-31 00:34:07 +0100 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-01-31 00:34:07 +0100 |
commit | 62bd490d1e7217898bc793afc20de853ac1e6622 (patch) | |
tree | 454b9cbf6f72c54b993487ebc1f8deeb1cbb6506 /tv/3modules | |
parent | 369fa6b7eb3f0fa3e1034bcad438eeda017949f8 (diff) | |
parent | a85de9a0deb81f8b8759bfc6a54db0d823ab7a19 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/3modules')
-rw-r--r-- | tv/3modules/default.nix | 23 | ||||
-rw-r--r-- | tv/3modules/wwan.nix | 1 |
2 files changed, 7 insertions, 17 deletions
diff --git a/tv/3modules/default.nix b/tv/3modules/default.nix index 8c1066b71..1a0971ec6 100644 --- a/tv/3modules/default.nix +++ b/tv/3modules/default.nix @@ -1,19 +1,8 @@ +with import ./lib; { - imports = [ - ./charybdis - ./dnsmasq.nix - ./ejabberd - ./focus.nix - ./hosts.nix - ./hw.nix - ./im.nix - ./iptables.nix - ./lidControl.nix - ./org.freedesktop.machine1.host-shell.nix - ./systemd.nix - ./slock.nix - ./x0vncserver.nix - ./Xresources.nix - ./wwan.nix - ]; + imports = + map + (name: ./. + "/${name}") + (attrNames + (filterAttrs isNixDirEntry (readDir ./.))); } diff --git a/tv/3modules/wwan.nix b/tv/3modules/wwan.nix index 03cd512e4..382f5a535 100644 --- a/tv/3modules/wwan.nix +++ b/tv/3modules/wwan.nix @@ -166,6 +166,7 @@ with import ./lib; interface=$(get-interface) + ip addr flush "$interface" ip link set dev "$interface" down uqmi --stop-network 0xFFFFFFFF --autoconnect uqmi --sync |