nixos-config/user/app/nvim/nvim.nix

16 lines
390 B
Nix
Raw Normal View History

2024-09-15 07:01:57 +05:30
{ config, pkgs, inputs, ... }:
{
home.packages = with pkgs; [
neovim
neovide
2024-09-15 07:01:57 +05:30
lua-language-server
];
2024-09-15 07:01:57 +05:30
home.file.".config/nvim".source = ./.;
home.file.".config/nvim".recursive = true;
2024-09-15 07:01:57 +05:30
home.file.".config/nvim/lua/themes/stylix.lua".source = config.lib.stylix.colors {
template = builtins.readFile ./lua/themes/stylix.lua.mustache;
extension = ".lua";
};
}