host/macbook: add homebrew with chromium

This commit is contained in:
Dmitriy Pleshevskiy 2025-03-12 21:17:41 +03:00
parent 7ce3a9fb70
commit d9fae03553
Signed by: pleshevskiy
GPG key ID: 17041163DA10A9A2

View file

@ -3,6 +3,8 @@
{
environment.systemPackages = with pkgs; [
vim
git
git-crypt
];
nix.settings.experimental-features = "nix-command flakes";
@ -12,4 +14,12 @@
serverAddress = "192.168.0.153";
screenName = "macbook-pro";
};
homebrew = {
enable = true;
casks = [
{ name = "eloston-chromium"; }
];
};
}