nixos-configs/modules/network.nix
2023-03-11 04:34:32 +01:00

7 lines
158 B
Nix

{ config, lib, pkgs, ... }:
{
networking.hosts = {
"127.0.0.1" = [ "localhost" "membres.yourcoop.local" ];
};
services.resolved.dnssec = "false";
}