diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-04-05 17:27:04 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-04-05 17:27:04 -0700 |
| commit | 35e8b8b78d4ad3b8002b922bc0a9f9dcbcf47351 (patch) | |
| tree | 532c717f6a83d19c84d05c0cecd4e90c693bef58 /hosts/aptos/default.nix | |
| parent | ssh: refactor to a module (diff) | |
| download | infra-35e8b8b78d4ad3b8002b922bc0a9f9dcbcf47351.tar.gz | |
network: move tailscale in modules
Move the networking configuration for the hosts to its own file.
Diffstat (limited to '')
| -rw-r--r-- | hosts/aptos/default.nix | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/hosts/aptos/default.nix b/hosts/aptos/default.nix index 95f4b81..b596f30 100644 --- a/hosts/aptos/default.nix +++ b/hosts/aptos/default.nix @@ -4,8 +4,8 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ./sound.nix + ./networking.nix ../common/desktop - ../common/system/tailscale.nix ../common/hardware/xps9300.nix ]; @@ -22,25 +22,6 @@ }; }; - # Use systemd-networkd for networking - systemd.network = { - enable = true; - networks = { - wlan0 = { - matchConfig.Name = "wlan0"; - networkConfig = { DHCP = "yes"; }; - extraConfig = '' - [DHCPv4] - UseDNS=yes - UseDomains=yes - ''; - }; - }; - }; - - networking.wireless.iwd.enable = true; - networking.private-wireguard.enable = true; - services.thermald.enable = true; # This value determines the NixOS release from which the default |
