mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
12 lines
208 B
Nix
12 lines
208 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf pkgs.stdenv.isDarwin {
|
|
networking = {
|
|
computerName = config.networking.hostName;
|
|
# Adjust if necessary
|
|
# hostName = "";
|
|
};
|
|
};
|
|
|
|
}
|