Files
nixos/pkgs/neovim/default.nix
T
2025-05-21 17:28:57 -05:00

22 lines
512 B
Nix

{pkgs, ...}: let
nvimSource = pkgs.fetchFromGitea {
domain = "git.sakamoto.dev";
owner = "kenji";
repo = "nvim";
rev = "a03e484ca6ad91a655f80697a375c3d681cb74b6";
sha256 = "sha256-G3aCvWnQEojj5Q+SJre+mfuuURCUazGF0Dl6x6dkLEU=";
};
in {
programs.neovim.enable = true;
home.packages = with pkgs; [
lazygit
ripgrep
];
home.file.".config/nvim" = {
# source = /home/biscuit/Nixos/packages/nvim/nvchad;
source = nvimSource;
recursive = true;
force = true;
};
}