Files
sydnix/modules/nixos/hosts.nix
2025-01-19 18:41:38 -07:00

12 lines
207 B
Nix
Executable File

{ config, lib, pkgs, ... }:
{
config = {
networking.hosts = {
"100.95.131.43" = [ "whitepc" ];
"192.168.68.66" = [ "guix-rebound" ];
"192.168.68.79" = [ "deertopia" ];
};
};
}