dotfiles/nixos/.flake/system/network.nix.org
2024-09-28 00:01:09 -05:00

1.2 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 = [ ];
    };

Close the network configuration.

  }