13 lines
457 B
Nix
13 lines
457 B
Nix
|
|
# Default nix-darwin host. Minimal macOS baseline; the user environment
|
||
|
|
# (shell, git, editor) is carried by the shared ./lyrathorpe/home modules,
|
||
|
|
# the same ones used by the Linux hosts. nixpkgs.hostPlatform is set by
|
||
|
|
# mkDarwinHost in flake.nix.
|
||
|
|
{ pkgs, ... }:
|
||
|
|
{
|
||
|
|
programs.zsh.enable = true;
|
||
|
|
environment.systemPackages = [ pkgs.git ];
|
||
|
|
|
||
|
|
# Used for backwards compatibility; read `darwin-rebuild changelog` before changing.
|
||
|
|
system.stateVersion = 5;
|
||
|
|
}
|