Compare commits

..

2 Commits

Author SHA1 Message Date
82614c27db Remove dashboard 2026-04-23 11:00:00 -04:00
69584f4eb9 Use this flake's pkgs for nixvim 2026-04-23 10:57:55 -04:00
2 changed files with 2 additions and 31 deletions

View File

@@ -29,37 +29,6 @@
clipboard.providers.xclip.enable = true; clipboard.providers.xclip.enable = true;
plugins = { plugins = {
dashboard = {
enable = true;
settings = {
theme = "hyper";
config = {
header = [
" "
" "
" "
" "
" "
" "
""
];
shortcut = [
{
action = {
__raw = "function(path) vim.cmd('Telescope find_files') end";
};
desc = "Find Files";
key = "f";
icon = " ";
}
];
};
};
};
telescope = { telescope = {
enable = true; enable = true;

View File

@@ -33,6 +33,7 @@
nvim = nixvim.legacyPackages.${system}.makeNixvimWithModule { nvim = nixvim.legacyPackages.${system}.makeNixvimWithModule {
module = nixvimModule; module = nixvimModule;
inherit pkgs;
extraSpecialArgs = { extraSpecialArgs = {
inherit inputs; inherit inputs;
light = false; light = false;
@@ -41,6 +42,7 @@
nvim-light = nixvim.legacyPackages.${system}.makeNixvimWithModule { nvim-light = nixvim.legacyPackages.${system}.makeNixvimWithModule {
module = nixvimModule; module = nixvimModule;
inherit pkgs;
extraSpecialArgs = { extraSpecialArgs = {
inherit inputs; inherit inputs;
light = true; light = true;