mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-08 20:36:40 +00:00
17 lines
215 B
Nix
17 lines
215 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
config = lib.mkIf pkgs.stdenv.isDarwin {
|
|
networking = {
|
|
computerName = config.networking.hostName;
|
|
# Adjust if necessary
|
|
# hostName = "";
|
|
};
|
|
};
|
|
}
|