mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 12:47:00 +01:00
17 lines
297 B
Nix
17 lines
297 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
wireguard.enable = true;
|
|
firewall = {
|
|
checkReversePath = false;
|
|
allowedUDPPorts = [ 25565 ];
|
|
allowedTCPPorts = [ 25565 ];
|
|
};
|
|
};
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
};
|
|
}
|