feat(programs): add neovide

This commit is contained in:
uku 2025-03-28 10:02:46 +01:00
parent 4f997bc6a8
commit 6c61c3604d
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 14 additions and 0 deletions

View file

@ -74,6 +74,7 @@
enable32Bit = true; enable32Bit = true;
}; };
hm.imports = [ ../programs/neovim/neovide.nix ];
hm.home = { hm.home = {
packages = with pkgs; [ packages = with pkgs; [
chromium chromium

View file

@ -0,0 +1,13 @@
# home-manager module
{
programs.neovide = {
enable = true;
settings = {
fork = true;
font = {
normal = "Iosevka";
size = 12;
};
};
};
}