updates for modular format

This commit is contained in:
2025-01-07 18:18:13 -05:00
parent 3f45084c90
commit 2626bd0df9
14 changed files with 433 additions and 1261 deletions

View File

@@ -0,0 +1,31 @@
{ config, pkgs, lib, ... }:
{
# Darwin-level Homebrew configuration
homebrew = {
enable = true;
onActivation.cleanup = "uninstall";
taps = [];
brews = [
"cowsay"
"git"
"k9s"
"helm"
"podman"
"podman-compose"
];
casks = [
"1password"
"podman-desktop"
"teleport-connect"
"utm"
"localsend"
];
masApps = {
"1Password for Safari" = 1569813296;
"wireguard" = 1451685025;
"wipr" = 1320666476;
};
};
}