Files
system-config/home-manager/features/development-macos.nix

16 lines
335 B
Nix

# Meta-package for development on linux
{ lib, ... }:
{
imports = [
./development/development.nix
];
# OS X seems to render these fonts a bit smaller than Linux
programs.alacritty.settings.font.size = lib.mkForce 14;
# OS X doesn't support configuring the ssh-agent
services.ssh-agent.enable = lib.mkForce false;
}