Files
sydnix/modules/nixos/hosts.nix
2025-03-24 22:25:58 -06:00

13 lines
256 B
Nix
Executable File

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