mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
13 lines
296 B
Nix
13 lines
296 B
Nix
{ ... }:
|
|
{
|
|
networking.networkmanager.enable = true;
|
|
networking.firewall = {
|
|
checkReversePath = false;
|
|
allowedUDPPorts = [ 25565 1194 ];
|
|
allowedTCPPorts = [ 25565 443 ];
|
|
};
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
networking.wireguard.enable = true;
|
|
}
|