nixos-configs/modules/network.nix

8 lines
158 B
Nix
Raw Normal View History

2020-07-06 16:03:10 +02:00
{ config, lib, pkgs, ... }:
{
networking.hosts = {
2023-02-22 23:12:01 +01:00
"127.0.0.1" = [ "localhost" "membres.yourcoop.local" ];
2020-07-06 16:03:10 +02:00
};
services.resolved.dnssec = "false";
2020-07-06 16:03:10 +02:00
}