12 lines
274 B
Nix
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;
|
|
}
|