Fix firefox launch time.

This commit is contained in:
Tom Alexander
2024-12-20 21:06:04 -05:00
parent b314982196
commit e7ab762ee4
3 changed files with 27 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
imports = [];
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [
22 # ssh
];
networking.firewall.allowedUDPPorts = [
5353 # mDNS
];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
}