12 lines
221 B
Nix
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;
|
|
}
|