summaryrefslogtreecommitdiff
path: root/systems/hermes/networking.nix
blob: 17b96171fdb616fa38b498cdb05a3f6a3845b13c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{lib, pkgs, ...}: {
  networking = {
    hostName = "hermes";
    useDHCP = lib.mkDefault true;

    nameservers = [ "208.67.222.222" "208.67.220.220" ];

    firewall.enable = false;

    networkmanager = {
      enable = true;
      plugins = with pkgs; [ networkmanager-fortisslvpn ];
    };
  };

  # Bluetooth
  hardware.bluetooth.enable = true;
}