.dotfiles/nix/pkgs/darwin_work.nix
Martin Larsson 44e501b67f Better handling of work/personal darwin machine, remove clang & -tools
from work and add llvm via brew instead.
2025-04-16 22:56:54 +02:00

15 lines
216 B
Nix

{ pkgs, ... }:
{
home = {
packages = with pkgs; [
(python311.withPackages (pythonPkgs: [
pythonPkgs.pip
pythonPkgs.setuptools
]))
pcre
ccache
mkdocs
];
};
}