16 lines
323 B
Nix
16 lines
323 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;
|
|
|
|
# OS X doesn't support configuring the ssh-agent
|
|
services.ssh-agent.enable = lib.mkForce false;
|
|
|
|
}
|