Files
system-config/home-manager/features/development-macos.nix
2025-02-25 14:12:37 -08:00

12 lines
221 B
Nix

# Meta-package for development on linux
{ lib, ... }:
{
imports = [
./development.nix
];
# OS X seems to render these fonts a bit smaller than Linux
programs.alacritty.settings.font.size = lib.mkForce 14;
}