[mac] Fixes development file that was pointing to the wrong place

This commit is contained in:
Drew Haven
2025-02-25 14:25:31 -08:00
parent 21c5d1374e
commit f5f2d77e8d
2 changed files with 6 additions and 1 deletions

View File

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

View File

@@ -1,4 +1,5 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
services.ssh-agent.enable = true; services.ssh-agent.enable = true;
} }