🔧 epicurus: homeberw config

This commit is contained in:
James Walker 2021-12-19 11:59:04 -05:00
parent 96f4f488d4
commit 459eb0ccf3
Signed by: walkah
GPG Key ID: 3C127179D6086E93
2 changed files with 46 additions and 1 deletions

View File

@ -4,7 +4,7 @@ let
"https://github.com/walkah/dotfiles/archive/main.tar.gz";
in {
imports = [ <home-manager/nix-darwin> ];
imports = [ <home-manager/nix-darwin> ./homebrew.nix ];
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget

View File

@ -0,0 +1,45 @@
{ config, lib, pkgs, ... }:
{
homebrew = {
enable = true;
brewPrefix = "/opt/homebrew/bin";
autoUpdate = true;
cleanup = "zap";
global = {
brewfile = true;
noLock = true;
};
taps = [
"homebrew/cask"
"homebrew/cask-drivers"
"homebrew/cask-fonts"
"homebrew/services"
];
brews = [ "code-server" "coreutils" "mosh" ];
casks = [
"1password"
"alfred"
"docker"
"font-jetbrains-mono"
"font-jetbrains-mono-nerd-font"
"gpg-suite"
"ipfs"
"keybase"
"plex-media-server"
"stats"
"syncthing"
"synology-drive"
];
masApps = {
Bumpr = 1166066070;
Magnet = 441258766;
Tailscale = 1475387142;
Xcode = 497799835;
};
};
}