mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 19:45:40 +00:00
8 lines
170 B
Nix
8 lines
170 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.hostName = "vps";
|
|
networking.domain = "";
|
|
networking.firewall.enable = true;
|
|
boot.kernel.sysctl."net.ipv4.ip_forward" = 1;
|
|
}
|