This commit is contained in:
biscuit
2025-05-27 16:44:19 -05:00
parent 25c0a328e6
commit 88076292de
4 changed files with 342 additions and 8 deletions
+20 -7
View File
@@ -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;
# };
}