🔧 epicurus: homeberw config
This commit is contained in:
parent
96f4f488d4
commit
459eb0ccf3
@ -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
|
||||
|
45
hosts/epicurus/homebrew.nix
Normal file
45
hosts/epicurus/homebrew.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user