initial commit
This commit is contained in:
31
machine/apps.nix
Normal file
31
machine/apps.nix
Normal 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 = [
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user