dotfiles/modules/darwin/networking.nix
2024-01-24 21:52:33 -05:00

12 lines
208 B
Nix

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