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

87 lines
2.2 KiB
Nix
Raw Permalink 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-12-22 04:42:36 -05:00
mainHmCfg = osConfig.home-manager.users.${cfg.user} or config;
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;
2024-12-22 04:42:36 -05:00
flakeDir = "${removePrefix "${mainHmCfg.home.homeDirectory}/" flakeEnv}";
optionsAttr =
if osConfig != null
then "nixosConfigurations.${hostName}.options"
else "nixOnDroidConfigurations.default";
in {
config = mkIf cfg.enable {
assertions = [
{
2024-12-22 04:42:36 -05:00
assertion = hasPrefix "${mainHmCfg.home.homeDirectory}/" flakeEnv;
message = ''
Your $FLAKE environment variable needs to point to a directory in
the main users' home to use the neovim module.
'';
}
];
# We keep the packages here
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}\").${optionsAttr}";
};
};
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 = ./default.nix;
}