Files
nixos/pkgs/neovim/default.nix
T
biscuit c794974b20 fx
2025-06-02 13:32:32 -05:00

38 lines
771 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
# ];
imports = [
inputs.nixvim.homeManagerModules.default
];
programs.neovim.enable = true;
programs.nixvim = {
imports = [
./custom/dashboard.nix
./custom/telescope.nix
];
enable = true;
plugins = {
};
# home.file.".config/nvim" = {
# # source = /home/biscuit/Nixos/packages/nvim/nvchad;
# source = nvimSource;
# recursive = true;
# force = true;
# };
};
}