mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 07:24:10 +01:00
24 lines
461 B
Nix
24 lines
461 B
Nix
{ ... }:
|
|
|
|
#############################################################
|
|
#
|
|
# Harmonica - my MacBook Pro 2020 13-inch, mainly for business.
|
|
#
|
|
#############################################################
|
|
|
|
let
|
|
name = "harmonica";
|
|
in
|
|
{
|
|
imports = [
|
|
../../modules/darwin/core.nix
|
|
../../modules/darwin/apps.nix
|
|
|
|
../../secrets/darwin.nix
|
|
];
|
|
|
|
networking.hostName = name;
|
|
networking.computerName = name;
|
|
system.defaults.smb.NetBIOSName = name;
|
|
}
|