nixcfg/common/system.nix
2025-06-11 01:13:48 -04:00

13 lines
295 B
Nix
Executable file

{ pkgs, config, ... }:
{
# boot, networking, locale
boot.kernel.sysctl."net.ipv4.ip_forward" = 1;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
environment.variables.EDITOR = "vim";
time.timeZone = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8";
}