{pkgs, ...}: let nvim = pkgs.fetchgit { url = "https://git.broccoli.town/dp/nvim"; sha256 = "sha256-yhbgfKarel8ACIWvIw2fM1qFoZnH8O+5+oNVnMZwdjo="; }; in { programs.neovim.enable = true; home.file = { ".config/nvim" = { recursive = true; source = nvim; }; }; }