feat: new aarch64-darwin host - fern

This commit is contained in:
Ryan Yin
2023-12-20 20:09:09 +08:00
parent a07dfbe36a
commit e70f7269f4
10 changed files with 120 additions and 166 deletions

24
hosts/fern/default.nix Normal file
View File

@@ -0,0 +1,24 @@
{username, ...} @ args:
#############################################################
#
# Fern - MacBook Pro 2022 13-inch M2 16G, mainly for business.
#
#############################################################
let
hostname = "fern";
in {
networking.hostName = hostname;
networking.computerName = hostname;
system.defaults.smb.NetBIOSName = hostname;
# Define a user account. Don't forget to set a password with passwd.
users.users."${username}" = {
home = "/Users/${username}";
description = username;
# set user's default shell back to zsh
# `chsh -s /bin/zsh`
# DO NOT change the system's default shell to nushell! it will break some apps!
# It's better to change only starship/alacritty/vscode's shell to nushell!
};
}

View File

@@ -1,7 +1,7 @@
{username, ...} @ args:
#############################################################
#
# Harmonica - my MacBook Pro 2020 13-inch, mainly for business.
# Harmonica - my MacBook Pro 2020 13-inch, mainly for personal use
#
#############################################################
let