refactor(darwin): install GUI apps via homebrew

This commit is contained in:
2026-03-23 09:25:05 +00:00
parent 4adc8329a1
commit 4defd577d3
3 changed files with 20 additions and 10 deletions

View File

@@ -13,7 +13,7 @@
(den.lib.perHost {
includes = [den.aspects.host-darwin-base];
darwin = {pkgs, ...}: {
darwin = {...}: {
networking.hostName = "chidi";
networking.computerName = "chidi";
@@ -24,8 +24,8 @@
path = "/run/secrets/opencode-api-key";
};
environment.systemPackages = with pkgs; [
slack
homebrew.casks = [
"slack"
];
};
})