summaryrefslogtreecommitdiff
path: root/hosts/toaster/network/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/toaster/network/default.nix')
-rw-r--r--hosts/toaster/network/default.nix16
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";