neovim-flake/lib/module/default.nix

48 lines
1.2 KiB
Nix
Raw Normal View History

# Home Manager module
2023-03-31 17:05:28 +02:00
{inputs, ...}: {
perSystem = {
system,
config,
pkgs,
lib ? pkgs.lib,
...
}:
with lib; let
cfg = config.programs.neovim-flake;
set = self'.packages.maximal {mainConfig = cfg.settings;};
in {
meta.maintainers = [maintainers.notashelf];
2023-03-31 17:05:28 +02:00
options.programs.neovim-flake = {
enable = mkEnableOption "A NeoVim IDE with a focus on configurability and extensibility.";
2023-03-31 17:05:28 +02:00
settings = mkOption {
type = types.attrsOf types.anything;
default = {};
example = literalExpression ''
{
vim.viAlias = false;
vim.vimAlias = true;
vim.lsp = {
enable = true;
formatOnSave = true;
lightbulb.enable = true;
lspsaga.enable = false;
nvimCodeActionMenu.enable = true;
trouble.enable = true;
lspSignature.enable = true;
rust.enable = false;
nix = true;
};
}
'';
description = "Attribute set of neoflake preferences.";
};
};
2023-03-31 17:05:28 +02:00
config = mkIf cfg.enable {
home.packages = [set.neovim];
};
};
2023-03-31 17:05:28 +02:00
}