remove dedicated homebrew module

This commit is contained in:
Yan Lin 2026-02-11 20:09:54 +01:00
parent be7cee9208
commit 4d42df2800
2 changed files with 56 additions and 59 deletions

View file

@ -2,7 +2,6 @@
{
imports = [
../../modules/homebrew.nix
nix-homebrew.darwinModules.nix-homebrew
];
@ -142,4 +141,60 @@
StandardOutPath = "/tmp/remap-keys.out";
};
};
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "zap";
upgrade = true;
};
greedyCasks = true;
brews = [
];
casks = [
# Development
"coteditor"
"ghostty"
"ovito"
# Internet & Network
"clash-verge-rev"
"firefox"
"keepassxc"
"tailscale-app"
# Media
"calibre"
"iina"
"musicbrainz-picard"
# Productivity
"drawio"
"inkscape"
"microsoft-excel"
"microsoft-powerpoint"
"microsoft-word"
"tencent-meeting"
"obsidian"
"slidepilot"
"zotero"
# Utilities
"aerospace"
"hiddenbar"
"keycastr"
"linearmouse"
"localsend"
"maccy"
"snipaste"
];
taps = [
"nikitabobko/tap"
];
};
nix-homebrew = {
enable = true;
enableRosetta = true;
user = "yanlin";
autoMigrate = true;
};
}

View file

@ -1,58 +0,0 @@
{ config, pkgs, ... }:
{
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "zap";
upgrade = true;
};
greedyCasks = true;
brews = [
];
casks = [
# Development
"coteditor"
"ghostty"
"ovito"
# Internet & Network
"clash-verge-rev"
"firefox"
"keepassxc"
"tailscale-app"
# Media
"calibre"
"iina"
"musicbrainz-picard"
# Productivity
"drawio"
"inkscape"
"microsoft-excel"
"microsoft-powerpoint"
"microsoft-word"
"tencent-meeting"
"obsidian"
"slidepilot"
"zotero"
# Utilities
"aerospace"
"hiddenbar"
"keycastr"
"linearmouse"
"localsend"
"maccy"
"snipaste"
];
taps = [
"nikitabobko/tap"
];
};
nix-homebrew = {
enable = true;
enableRosetta = true;
user = "yanlin";
autoMigrate = true;
};
}