Add hosts to hostfile

This commit is contained in:
Paul-Henri Froidmont 2020-07-06 16:03:10 +02:00 committed by Froidmont Paul-Henri
parent b5e7bbdd43
commit 68abfb922f
2 changed files with 7 additions and 0 deletions

6
configs/network.nix Normal file
View file

@ -0,0 +1,6 @@
{ config, lib, pkgs, ... }:
{
networking.hosts = {
"127.0.0.1" = [ "localhost" "local.ted.europa.eu" ];
};
}