This commit is contained in:
monologiq 2025-12-25 10:28:27 +01:00
parent e06b409221
commit 92f83235e0
10 changed files with 382 additions and 159 deletions

View file

@ -0,0 +1,28 @@
{ ... }:
{
imports = [
../minimal.nix
];
homebrew = {
enable = true;
casks = [
"1password"
"1password-cli"
"adguard"
"brave-browser"
];
};
programs.zsh = {
enable = true;
enableGlobalCompInit = false;
shellInit = ''
if [ -e "/opt/homebrew/bin/brew" ]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
'';
};
}