dotfiles/modules/darwin/networking.nix
2024-04-20 09:42:06 -04:00

17 lines
215 B
Nix

{
config,
pkgs,
lib,
...
}:
{
config = lib.mkIf pkgs.stdenv.isDarwin {
networking = {
computerName = config.networking.hostName;
# Adjust if necessary
# hostName = "";
};
};
}