diff options
| author | Grisha Shipunov | 2025-02-18 09:54:31 +0100 |
|---|---|---|
| committer | Grisha Shipunov | 2025-02-18 09:54:31 +0100 |
| commit | b6731802a8f735d5073d04b74c54fbe5a53ecb74 (patch) | |
| tree | 064249c6daabb6816be10cfc8579cc1c4dbb2228 /hosts/toaster/network | |
| parent | e51332065381d99091413c899b8a5f2610af14b6 (diff) | |
format
Diffstat (limited to 'hosts/toaster/network')
| -rw-r--r-- | hosts/toaster/network/default.nix | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/hosts/toaster/network/default.nix b/hosts/toaster/network/default.nix index 48a6f8a..ee0bdbe 100644 --- a/hosts/toaster/network/default.nix +++ b/hosts/toaster/network/default.nix @@ -1,11 +1,15 @@ -{ lib, pkgs, ... }: { +{ lib, pkgs, ... }: +{ imports = [ ./mullvad.nix ./dumpdvb.nix ./zw.nix ]; - environment.systemPackages = with pkgs; [ iwgtk impala ]; + environment.systemPackages = with pkgs; [ + iwgtk + impala + ]; # kick out networkmanager networking.networkmanager.enable = lib.mkForce false; @@ -48,8 +52,12 @@ DHCP = "yes"; IPv6AcceptRA = true; }; - dhcpV4Config = { RouteMetric = 666; }; - dhcpV6Config = { RouteMetric = 666; }; + dhcpV4Config = { + RouteMetric = 666; + }; + dhcpV6Config = { + RouteMetric = 666; + }; }; "wlan-uplink" = { matchConfig.Name = "wlan0"; |
