5082521524
/ update-readme (push) Has been cancelled
- Introduced `default-creds` module for managing default credentials with Umami integration. - Added `fail2ban` module for brute-force attack protection with configurable ban times. - Created `firewall` module to enable and configure basic firewall settings. - Implemented `gitea` module for self-hosted Git service with PostgreSQL backend. - Developed `glance` module for a customizable dashboard with various widgets and themes. - Added `iknowyou` module for a self-hosted password manager with production and demo environments. - Introduced `kernel-hardening` module for enhancing kernel security settings. - Created `mazanoke` module for a simple web application with Nginx integration. - Added `mealie` module for a self-hosted meal planning application. - Implemented `stirling-pdf` module for PDF generation service. - Developed `umami` module for self-hosted analytics with secret management. - Added `ssh` module for secure SSH configuration with user restrictions. - Introduced `nixy` theme for a customized aesthetic experience across services.
73 lines
1.7 KiB
Nix
73 lines
1.7 KiB
Nix
{pkgs, ...}: {
|
|
vim = {
|
|
luaConfigRC.remove-todo-keymaps = ''
|
|
vim.keymap.del("n", "<leader>tdq")
|
|
vim.keymap.del("n", "<leader>tdt")
|
|
'';
|
|
undoFile.enable = true;
|
|
utility.yazi-nvim = {
|
|
enable = true;
|
|
mappings.openYazi = "<leader>e";
|
|
};
|
|
notes.todo-comments.enable = true;
|
|
assistant.copilot = {
|
|
enable = true;
|
|
cmp.enable = true;
|
|
};
|
|
|
|
autocomplete = {
|
|
nvim-cmp = {
|
|
enable = true;
|
|
sources = {
|
|
buffer = "[Buffer]";
|
|
path = "[Path]";
|
|
};
|
|
sourcePlugins = [
|
|
pkgs.vimPlugins.cmp-cmdline
|
|
];
|
|
};
|
|
};
|
|
|
|
snippets.luasnip.enable = true;
|
|
ui = {
|
|
noice.enable = true;
|
|
colorizer.enable = true;
|
|
};
|
|
|
|
visuals = {
|
|
rainbow-delimiters.enable = true;
|
|
};
|
|
|
|
extraPlugins = {
|
|
sttr-nvim = {
|
|
package = pkgs.vimUtils.buildVimPlugin {
|
|
name = "sttr-nvim";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "anotherhadi";
|
|
repo = "sttr.nvim";
|
|
rev = "b41f2f51372222e23efbe5df9d72391cd933d4d1";
|
|
hash = "sha256-JPv0NNNUUNPNJM5LHYjcmTvilbOKB3OxI2Q6wxVbTks=";
|
|
};
|
|
};
|
|
setup = ''
|
|
require("sttr").setup()
|
|
'';
|
|
};
|
|
jwt-tui-nvim = {
|
|
package = pkgs.vimUtils.buildVimPlugin {
|
|
name = "jwt-tui-nvim";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "anotherhadi";
|
|
repo = "jwt-tui.nvim";
|
|
rev = "c5100cb2cdfaf333014076a1a5c4c6a778bf3983";
|
|
hash = "sha256-qnQYZuQwyWkezhuyOorM67KBtatUboubofuT9A6McJI=";
|
|
};
|
|
};
|
|
setup = ''
|
|
require("jwt-tui").setup()
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|