my nix configs for my servers and desktop
at main 295 B view raw
1{ pkgs, config, ... }: 2{ 3 # boot, networking, locale 4 boot.kernel.sysctl."net.ipv4.ip_forward" = 1; 5 6 nix.settings.experimental-features = [ "nix-command" "flakes" ]; 7 8 environment.variables.EDITOR = "vim"; 9 10 time.timeZone = "America/New_York"; 11 i18n.defaultLocale = "en_US.UTF-8"; 12} 13