initialization
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
{pkgs, ...}: let
|
||||
nvimSource = pkgs.fetchFromGitea {
|
||||
domain = "git.sakamoto.dev";
|
||||
owner = "kenji";
|
||||
repo = "nvim";
|
||||
rev = "30449ae49cae92ec42356a49a3d2a3b4b7db0119";
|
||||
sha256 = "sha256-YbP814fKOFuCWBRwlccd4nx/h8sdMgiJQu54thRLsK8=";
|
||||
};
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user