nixos-config/nixos/custom-hosts.nix

12 lines
149 B
Nix

{ config
, lib
, pkgs
, ...
}: {
networking.extraHosts = ''
# home IP mapping
192.168.2.1 router.home
192.168.2.2 server.home
'';
}