dotfiles/modules/darwin/networking.nix

17 lines
215 B
Nix
Raw Normal View History

2024-04-20 09:42:06 -04:00
{
config,
pkgs,
lib,
...
}:
{
2022-06-19 23:44:29 -04:00
2022-12-21 14:18:03 -07:00
config = lib.mkIf pkgs.stdenv.isDarwin {
networking = {
2024-01-24 21:52:33 -05:00
computerName = config.networking.hostName;
2022-12-21 14:18:03 -07:00
# Adjust if necessary
# hostName = "";
};
2022-06-19 23:44:29 -04:00
};
}