dot_testing/modules/hosts.nix

14 lines
280 B
Nix
Raw Normal View History

2024-03-18 18:27:29 -05:00
{ lib, config, pkgs, inputs, ...}:
{
networking.hosts = {
"192.168.1.1" = [ "router" ];
"192.168.1.200" = [ "mainsail" ];
"192.168.1.201" = [ "x230t" ];
"192.168.1.202" = [ "mlg" ];
2024-04-28 17:58:51 -05:00
"192.168.1.203" = [ "phone" ];
"149.28.63.115" = [ "netbox" ];
2024-03-18 18:27:29 -05:00
};
}