summaryrefslogblamecommitdiff
path: root/systems/hermes/networking.nix
blob: 17b96171fdb616fa38b498cdb05a3f6a3845b13c (plain) (tree)
1
2
3
4
5
6
7
8
9
                   

                        
                                 

                                                        


                            



                                                          
    
 

                                   
 
{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;
}