Files

32 lines
576 B
Nix
Raw Permalink Normal View History

2026-04-12 16:10:14 -04:00
{pkgs, ...}: {
# define what packages you want here (that are within nixpkgs)
environment.systemPackages = with pkgs; [
neovim
git
mas
];
environment.variables.EDITOR = "nvim";
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "zap";
};
# install mac app store apps here (must have apps already "purchased" before you can already download them)
# use the "mas" cli tool to help you find mas identifiers!
masApps = { };
taps = [
];
brews = [
];
casks = [
];
};
}