15 lines
273 B
Nix
15 lines
273 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# macOS-specific settings
|
|
services.nix-daemon.enable = true;
|
|
programs.zsh.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
git
|
|
];
|
|
|
|
# System settings
|
|
system.stateVersion = 4;
|
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
|
}
|