nix/system/zenix.nix
2023-04-15 12:23:31 +01:00

23 lines
405 B
Nix

# https://search.nixos.org/options
{ config, pkgs, ... }:
{
networking.hostName = "zenix";
i18n.defaultLocale = "en_GB.UTF-8";
console = {
font = "Lat2-Terminus16";
};
services.openssh.enable = true;
services.tailscale.enable = true;
networking.firewall.checkReversePath = "loose";
networking.firewall.allowedTCPPorts = [ ];
system.stateVersion = "22.11"; # do not change
}