Files
sydnix/modules/nixos/hosts.nix
T
msyds 383182c24e
build / build (push) Successful in 1m19s
Revert "fix: update host aliases"
This reverts commit cc48c11448.
2026-09-10 15:10:41 -06:00

14 lines
299 B
Nix

{ 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" ];
"192.168.68.62" = [ "buffalo-nas" ];
};
};
}