Files
nixos/pkgs/neovim/biscuit.nix
T
2025-05-19 19:17:54 -05:00

22 lines
512 B
Nix

{pkgs, ...}: let
nvimSource = pkgs.fetchFromGitea {
domain = "git.sakamoto.dev";
owner = "kenji";
repo = "nvim";
rev = "30449ae49cae92ec42356a49a3d2a3b4b7db0119";
sha256 = "sha256-mEQ4PPVFl2tGog5GrQsnfy6V+1v4vVk9LKtlMCVCO3c=";
};
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;
};
}