Files
sydnix/modules/nixos/hosts.nix
T
msyds cc48c11448
build / build (push) Failing after 30s
fix: update host aliases
2026-06-29 19:15:49 -06:00

14 lines
287 B
Nix

{ config, lib, pkgs, ... }:
{
config = {
networking.hosts = {
"100.95.131.43" = [ "whitepc" ];
"10.0.0.109" = [ "guix-rebound" "sydpc" ];
"10.0.0.248" = [ "deertopia" ];
"10.0.0.218" = [ "fruitbook" ];
"10.0.0.203" = [ "buffalo-nas" ];
};
};
}