mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 05:32:06 +00:00
Also set wakatime project name for @hackclub High Seas and for coding stats Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
27 lines
No EOL
486 B
Nix
27 lines
No EOL
486 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Open ports in the firewall.
|
|
networking.firewall.allowedTCPPortRanges = [
|
|
{ from = 1714; to = 1764; }
|
|
];
|
|
networking.firewall.allowedUDPPortRanges = [
|
|
{ from = 1714; to = 1764; }
|
|
];
|
|
networking.firewall.allowedTCPPorts = [
|
|
22
|
|
80
|
|
443
|
|
3000
|
|
8000
|
|
];
|
|
networking.firewall.allowedUDPPorts = [
|
|
22
|
|
80
|
|
443
|
|
3000
|
|
8000
|
|
];
|
|
# Or disable the firewall altogether.
|
|
# networking.firewall.enable = false;
|
|
} |