mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
12 lines
212 B
Nix
12 lines
212 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf pkgs.stdenv.isDarwin {
|
|
networking = {
|
|
computerName = "${config.fullName}'\\''s Mac";
|
|
# Adjust if necessary
|
|
# hostName = "";
|
|
};
|
|
};
|
|
|
|
}
|