mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
14 lines
225 B
Nix
14 lines
225 B
Nix
{ pkgs, ... }: {
|
|
|
|
users.users."${user}" = { # macOS user
|
|
home = "/Users/${user}";
|
|
shell = pkgs.zsh; # Default shell
|
|
};
|
|
|
|
networking = {
|
|
computerName = "MacBook"; # Host name
|
|
hostName = "MacBook";
|
|
};
|
|
|
|
}
|