Files
nix-config/home-manager/features/neovide.nix
2024-04-20 21:19:11 +02:00

18 lines
253 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
neovide
];
home.file = {
".config/neovide/config.toml" = {
text = ''
vsync = true
[font]
normal = ["FiraCode Nerd Font"]
size = 14
'';
};
};
}