Files
nixos-at-home/modules/common/networking.nix
2026-05-31 11:03:24 +01:00

12 lines
274 B
Nix

{ config, lib, pkgs, ... }:
{
time.timeZone = "Europe/London";
i18n.defaultLocale = "en_US.UTF-8";
console.keyMap = "uk";
networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [ 22 ]; # SSH
networking.usePredictableInterfaceNames = false;
}