22 lines
434 B
Nix
22 lines
434 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# set hostnname
|
|
networking.hostName = "neon";
|
|
|
|
# user networkmanager
|
|
networking.networkmanager.enable = true;
|
|
|
|
# firewall default configs
|
|
networking.firewall.allowedTCPPorts = [ ];
|
|
networking.firewall.allowedUDPPorts = [ ];
|
|
|
|
# enable bluetooth
|
|
hardware.bluetooth.enable = true;
|
|
|
|
# Add network-related packages
|
|
environment.systemPackages = with pkgs; [
|
|
wireguard-tools
|
|
];
|
|
}
|