nixcfg/cluster/prod/site/neptune.nix

12 lines
205 B
Nix
Raw Normal View History

2022-02-09 14:38:36 +00:00
{ config, pkgs, ... }:
{
networking.defaultGateway = {
address = "192.168.1.254";
interface = "eno1";
};
networking.nameservers = [ "192.168.1.254" ];
2022-02-09 14:38:36 +00:00
deuxfleurs.site_name = "neptune";
}