add git
This commit is contained in:
+20
-7
@@ -1,4 +1,8 @@
|
||||
{pkgs, ...}: let
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
nvimSource = pkgs.fetchFromGitea {
|
||||
domain = "git.sakamoto.dev";
|
||||
owner = "kenji";
|
||||
@@ -7,15 +11,24 @@
|
||||
sha256 = "sha256-Plo7edu9vXDDzZxyPu+traIAyHOouViU/nXNkDx+/N4=";
|
||||
};
|
||||
in {
|
||||
imports = [inputs.nixvim.homeManagerModules.default];
|
||||
programs.neovim.enable = true;
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
colorschemes.catppuccin.enable = true;
|
||||
plugins = {
|
||||
lightline.enable = true;
|
||||
alpha.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;
|
||||
};
|
||||
# home.file.".config/nvim" = {
|
||||
# # source = /home/biscuit/Nixos/packages/nvim/nvchad;
|
||||
# source = nvimSource;
|
||||
# recursive = true;
|
||||
# force = true;
|
||||
# };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user