remove dedicated homebrew module
This commit is contained in:
parent
be7cee9208
commit
4d42df2800
2 changed files with 56 additions and 59 deletions
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../modules/homebrew.nix
|
|
||||||
nix-homebrew.darwinModules.nix-homebrew
|
nix-homebrew.darwinModules.nix-homebrew
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
@ -142,4 +141,60 @@
|
||||||
StandardOutPath = "/tmp/remap-keys.out";
|
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;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue