initial commit

This commit is contained in:
2026-04-12 16:10:14 -04:00
commit 6ab0e5de69
8 changed files with 426 additions and 0 deletions

31
machine/apps.nix Normal file
View File

@@ -0,0 +1,31 @@
{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 = [
];
};
}