Code refactor

This commit is contained in:
2026-01-31 21:19:32 +01:00
parent c26d9bf209
commit 26f641b191
13 changed files with 84 additions and 75 deletions

View File

@@ -1,12 +1,16 @@
{ ... }:
{
networking.networkmanager.enable = true;
networking.firewall = {
checkReversePath = false;
allowedUDPPorts = [ 25565 1194 ];
allowedTCPPorts = [ 25565 443 ];
networking = {
networkmanager.enable = true;
wireguard.enable = true;
firewall = {
checkReversePath = false;
allowedUDPPorts = [ 25565 ];
allowedTCPPorts = [ 25565 ];
};
};
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
networking.wireguard.enable = true;
}