nixos-configs/homeManagerModules/neovim/langs/nix-lang/default.nix

84 lines
2 KiB
Nix
Raw Normal View History

self: {
config,
lib,
osConfig,
pkgs,
...
}: let
2024-12-16 17:44:17 -05:00
inherit (builtins) toJSON;
inherit (lib) attrValues getExe hasPrefix mkIf removePrefix;
inherit (osConfig.networking) hostName;
2024-06-10 22:57:20 -04:00
cfg = config.programs.neovim;
2024-08-02 11:26:15 -04:00
defaultFormatter = self.formatter.${pkgs.system};
nixdPkg = self.inputs.nixd.packages.${pkgs.system}.default;
flakeEnv = config.programs.bash.sessionVariables.FLAKE;
flakeDir = "${removePrefix "/home/${cfg.user}/" flakeEnv}";
in {
config = mkIf cfg.enableIde {
assertions = [
{
2024-05-09 15:36:57 -04:00
assertion =
cfg.enableIde
&& hasPrefix "/home/${cfg.user}/" flakeEnv
|| !cfg.enableIde;
message = ''
Your $FLAKE environment variable needs to point to a directory in
the main users' home to use the neovim module.
'';
}
];
2024-12-16 17:44:17 -05:00
home.packages = attrValues {
inherit
defaultFormatter
nixdPkg
;
};
2024-08-02 11:26:15 -04:00
# nixd by default kinda spams LspLog
home.sessionVariables.NIXD_FLAGS = "-log=error";
2024-12-16 17:44:17 -05:00
xdg.dataFile."${flakeDir}/.nixd.json".text = toJSON {
nixpkgs = {
expr = "import (builtins.getFlake \"${flakeDir}\").inputs.nixpkgs {}";
};
options.nixos = {
expr = "(builtins.getFlake \"${flakeDir}\").nixosConfigurations.${hostName}.options";
};
};
programs = {
neovim = {
2024-12-16 17:44:17 -05:00
extraPackages = attrValues {
inherit nixdPkg;
};
2024-05-08 23:04:16 -04:00
extraLuaConfig =
2024-06-09 22:49:30 -04:00
# lua
2024-05-08 23:04:16 -04:00
''
require('lspconfig').nixd.setup({
capabilities = require('cmp_nvim_lsp').default_capabilities(),
filetypes = { 'nix', 'in.nix' },
2024-05-09 10:42:45 -04:00
settings = {
nixd = {
2024-06-09 22:49:30 -04:00
formatting = {
-- TODO: Try to find <flake>.formatter
2024-08-02 11:26:15 -04:00
command = { '${getExe defaultFormatter}' },
2024-06-09 22:49:30 -04:00
},
2024-05-09 10:42:45 -04:00
},
},
});
2024-05-08 23:04:16 -04:00
'';
};
};
};
# For accurate stack trace
_file = ./nix.nix;
}