mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-14 03:42:56 +00:00
20 lines
344 B
Nix
20 lines
344 B
Nix
{ pkgs, user, ... }: {
|
|
|
|
home-manager.users.${user} = {
|
|
|
|
home.packages = with pkgs; [
|
|
neovim
|
|
gcc # for tree-sitter
|
|
];
|
|
|
|
xdg.configFile = {
|
|
"nvim/init.lua".source = ../../nvim.configlink/init.lua;
|
|
};
|
|
|
|
programs.git.extraConfig.core.editor = "nvim";
|
|
home.sessionVariables = { EDITOR = "nvim"; };
|
|
|
|
};
|
|
|
|
}
|