dotfiles/nixos/.flake/system/network.nix.org
2024-10-01 18:59:51 -05:00

1.3 KiB

Network Configuration

Open the network configuration.

  { config, lib, pkgs, ... }:

  {

This system is called nixos.

    networking.hostName = "nixos";

I use NetworkManager to configure my network.

    networking.networkmanager.enable = true;

Enable Bluetooth at boot.

    hardware.bluetooth.enable = true;
    hardware.bluetooth.powerOnBoot = true;
    services.blueman.enable = true;

Enable printing.

    services.printing.enable = true;

Enable SSH.

    services.openssh.enable = true;

Set up my firewall.

  networking.firewall = {
    allowedTCPPorts = [ ];
    allowedUDPPorts = [ ];
  };

  environment.etc = {
    "openvpn/update-resolv-conf" = {
      source = ./update-resolv-conf.sh;
      mode = "0700";
    };
  };

Close the network configuration.

  }