aboutsummaryrefslogtreecommitdiff
path: root/nixos/custom-hosts.nix
blob: 942bc4fc3472513c3e0a0f6bd64411c5f6adb0d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  config,
  lib,
  pkgs,
  ...
}: {
  networking.extraHosts = ''
    # home IP mapping

    192.168.2.1 router.home
    192.168.2.2 server.home
  '';
}