dot_testing/modules/hosts.nix

11 lines
174 B
Nix
Raw Normal View History

2024-03-18 18:27:29 -05:00
{ lib, config, pkgs, inputs, ...}:
{
networking.hosts = {
"192.168.1.120" = [ "x230t" ];
"192.168.1.52" = [ "mlg" ];
"192.168.1.100" = [ "mainsail" ];
};
}