[mac] Adds rust devel. [nvim] Uses snacks for buffer picker

This commit is contained in:
Drew Haven
2025-02-25 17:40:44 -08:00
parent b268a939e5
commit ebca54d8b8
5 changed files with 26 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
# 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;
}

View File

@@ -0,0 +1,7 @@
{ pkgs, ...}:
{
home.packages = with pkgs; [
rust-analyzer
rustfmt
];
}