updating module format and additional settings

This commit is contained in:
2025-01-07 22:46:08 -05:00
parent f3c078b369
commit 7dc1a8025e
11 changed files with 143 additions and 6 deletions

View File

@@ -0,0 +1,32 @@
{ 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"
"joplin"
];
masApps = {
"1Password for Safari" = 1569813296;
"wireguard" = 1451685025;
"wipr" = 1320666476;
};
};
}