nix-config/darwin/macbook.nix

15 lines
273 B
Nix
Raw Normal View History

2025-09-06 01:07:46 +02:00
{ 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";
}