mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
14 lines
501 B
Nix
14 lines
501 B
Nix
{ lib, config, pkgs, ... }:
|
||
|
||
{
|
||
networking.hostName = "EVE";
|
||
networking.computerName = "EVE’s MacBook Pro";
|
||
|
||
test = ''
|
||
echo checking hostname in /activate >&2
|
||
grep "scutil --set ComputerName 'EVE’s MacBook Pro'" ${config.out}/activate
|
||
grep "scutil --set LocalHostName ${lib.escapeShellArg "EVE"}" ${config.out}/activate
|
||
grep "scutil --set HostName ${lib.escapeShellArg "EVE"}" ${config.out}/activate
|
||
echo checking defaults write in ${config.out}/activate-user >&2
|
||
'';
|
||
}
|