Files
sydnix/modules/nixos/hosts.nix
Madeleine Sydney 10dfd4e502 feat: tailscale
2024-12-29 02:51:04 -07:00

10 lines
122 B
Nix

{ config, lib, pkgs, ... }:
{
config = {
networking.hosts = {
"100.95.131.43" = [ "whitepc" ];
};
};
}