[mac] Fixes development file that was pointing to the wrong place
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
services.ssh-agent.enable = true;
|
services.ssh-agent.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user