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

{ boot.loader.timeout = 1;

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