summary refs log tree commit diff stats
path: root/modules/base.nix
blob: acf773e027e7a5874ed9b999141eb6c39c5bf07d (plain)
1
2
3
4
5
6
7
8
{ config, pkgs, ... }:

{
  networking.extraHosts = ''
    127.0.0.1 ${config.networking.hostName}
    ::1 ${config.networking.hostName}
  '';
}