14 lines
287 B
Nix
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" ];
|
|
};
|
|
};
|
|
}
|