mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-20 00:03:45 +01:00
26 lines
518 B
Nix
26 lines
518 B
Nix
{ ... } @ args:
|
|
|
|
#############################################################
|
|
#
|
|
# 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
|
|
];
|
|
|
|
nixpkgs.overlays = import ../../overlays args;
|
|
|
|
networking.hostName = name;
|
|
networking.computerName = name;
|
|
system.defaults.smb.NetBIOSName = name;
|
|
}
|