batman nix

This commit is contained in:
Kulvir Singh
2025-01-05 03:15:23 +05:30
parent 149fd7ac90
commit c5cb34ac1c
88 changed files with 838 additions and 1946 deletions

50
hosts/mba/mac-apps.nix Normal file
View File

@@ -0,0 +1,50 @@
{
pkgs,
config,
...
}: {
environment.systemPackages = [
pkgs.fastfetch
];
environment.variables = {
MANPAGER = "nvim +Man!";
};
# Enable alternative shell support in nix-darwin.
# environment.shells = [
# pkgs.fish
# ];
fonts.packages = [
pkgs.nerd-fonts.jetbrains-mono
# Alternate Fonts
# pkgs.nerd-fonts.caskaydia-mono
# pkgs.nerd-fonts.iosevka
];
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
upgrade = true;
cleanup = "zap";
};
brews = [];
casks = [
"discord"
"obsidian"
"raycast"
"spotify"
"telegram-desktop"
# CORPO
"mongodb-compass"
"postman"
"slack"
"zoom"
];
};
}