mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 10:16:13 +01:00
18 lines
253 B
Nix
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
|
|
'';
|
|
};
|
|
};
|
|
}
|