32 lines
576 B
Nix
32 lines
576 B
Nix
{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 = [
|
|
];
|
|
};
|
|
}
|