migrates dnsc-air

This commit is contained in:
Dennis Schoepf 2026-03-05 22:26:16 +01:00
parent 4e26d4b880
commit 25d3917db6
9 changed files with 142 additions and 2 deletions

View file

@ -0,0 +1,56 @@
{ config, ... }:
let
username = config.flake.globalConfig.username;
in
{
flake.modules.darwin.homebrew =
{ pkgs, ... }:
{
nix-homebrew = {
enable = true;
user = username;
autoMigrate = true;
};
homebrew = {
user = username;
enable = true;
onActivation = {
autoUpdate = true;
upgrade = true;
cleanup = "zap";
};
brews = [
"go"
"mas"
"yt-dlp"
];
casks = [
"font-victor-mono"
"font-victor-mono-nerd-font"
"vlc"
"ghostty"
"hiddenbar"
"eurkey"
"karabiner-elements"
"caffeine"
"raycast"
"spotify"
"keyboard-cowboy"
"krita"
"darktable"
];
masApps = {
Bitwarden = 1352778147;
"Yesterday For Old Reddit" = 1603279883;
"Final Cut Pro" = 424389933;
Wireguard = 1451685025;
Pages = 409201541;
};
};
};
}