38 lines
771 B
Nix
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;
|
|
# };
|
|
};
|
|
}
|