mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 20:40:24 +01:00
refactor: Use hyphen(`-`) for variable names & folder names(except Python), replace all unserscore(`_`) with hyphen(`-`).
14 lines
358 B
Nix
14 lines
358 B
Nix
_:
|
|
#############################################################
|
|
#
|
|
# Harmonica - MacBook Pro 2020 13-inch i5 16G, mainly for personal use
|
|
#
|
|
#############################################################
|
|
let
|
|
hostname = "harmonica";
|
|
in {
|
|
networking.hostName = hostname;
|
|
networking.computerName = hostname;
|
|
system.defaults.smb.NetBIOSName = hostname;
|
|
}
|