update font config
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions

This commit is contained in:
Harivansh Rathi 2026-04-03 02:48:43 +00:00 committed by Hari
parent c849ff2e36
commit ff602381b4
3 changed files with 7 additions and 2 deletions

View file

@ -2,6 +2,7 @@
config,
lib,
pkgs,
hostConfig,
...
}:
let
@ -23,7 +24,7 @@ in
{
# Keep rust-analyzer in the user profile so it shadows rustup's proxy in
# /run/current-system/sw/bin when Neovim resolves LSP executables.
home.packages = [ pkgs.rust-analyzer ];
home.packages = [ pkgs.rust-analyzer ] ++ lib.optionals hostConfig.isDarwin [ pkgs.neovide ];
programs.neovim = {
enable = true;