Files
nixos/pkgs/neovim/default.nix
T
biscuit a5db5cc54d test
2025-06-03 11:55:29 -05:00

26 lines
528 B
Nix

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