mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-24 10:14:03 -05:00
Nixvim wrapper modules passed the host nixpkgs' fully elaborated stdenv.{host,build}Platform attrsets into Nixvim's own nixpkgs import.
When the host and Nixvim nixpkgs revisions disagreed, those platform attrsets could be re-elaborated by a different lib.systems, causing eval recursion or platform-schema errors.
Pass only { config = ...; } as the inherited platform spec instead. This keeps ABI/libc details while letting Nixvim's selected nixpkgs elaborate the platform itself.
116 lines
3.3 KiB
Nix
116 lines
3.3 KiB
Nix
{
|
|
# A `lib.nixvim` instance
|
|
nixvimLib,
|
|
# Function used to evaluate the `programs.nixvim` configuration
|
|
extendModules,
|
|
# Option path where extraFiles should go
|
|
filesOpt ? null,
|
|
# Filepath prefix to apply to extraFiles
|
|
filesPrefix ? "nvim/",
|
|
# Filepath to use when adding `cfg.initPath` to `filesOpt`
|
|
# Is prefixed with `filesPrefix`
|
|
initName ? "init.lua",
|
|
}:
|
|
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
options,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
mkIf
|
|
mkMerge
|
|
optionalAttrs
|
|
setAttrByPath
|
|
;
|
|
|
|
cfg = config.programs.nixvim;
|
|
opts = finalConfiguration.options;
|
|
|
|
flake = lib.optionalAttrs opts.flake.isDefined cfg.flake;
|
|
libOverlay = flake.lib.overlay or (import ../lib/overlay.nix);
|
|
|
|
# FIXME: buildPlatform can't use mkOptionDefault because it already defaults to hostPlatform
|
|
buildPlatformPrio = (lib.mkOptionDefault null).priority - 1;
|
|
|
|
nixpkgsModule =
|
|
{ config, ... }:
|
|
{
|
|
_file = ./_shared.nix;
|
|
nixpkgs = {
|
|
# Use global packages in nixvim's submodule
|
|
pkgs = lib.mkIf config.nixpkgs.useGlobalPackages (lib.mkDefault pkgs);
|
|
|
|
# Inherit platform spec
|
|
hostPlatform = lib.mkOptionDefault { inherit (pkgs.stdenv.hostPlatform) config; };
|
|
buildPlatform = lib.mkOverride buildPlatformPrio { inherit (pkgs.stdenv.buildPlatform) config; };
|
|
};
|
|
};
|
|
|
|
baseConfiguration = extendModules {
|
|
modules = [
|
|
nixpkgsModule
|
|
{ disabledModules = [ { key = "<internal:nixvim-nocheck-base-eval>"; } ]; }
|
|
];
|
|
};
|
|
|
|
finalConfiguration =
|
|
options.programs.nixvim.valueMeta.configuration or (throw
|
|
# v2 check+merge was added 2025-08-28, halfway through the 25.11 cycle
|
|
"`${options.programs.nixvim}` was evaluated using Nixpkgs lib ${lib.trivial.release}, which does not support `valueMeta` added in Nixpkgs 25.11."
|
|
);
|
|
|
|
extraFiles = lib.filter (file: file.enable) (lib.attrValues cfg.extraFiles);
|
|
in
|
|
{
|
|
_file = ./_shared.nix;
|
|
|
|
options.programs.nixvim = lib.mkOption {
|
|
inherit (baseConfiguration) type;
|
|
default = { };
|
|
};
|
|
|
|
config = mkMerge [
|
|
{
|
|
# Make Nixvim's extended lib available to the host modules
|
|
# - The `config.lib.nixvim` option is Nixvim's section of the lib
|
|
# (based on our flake's locked Nixpkgs lib)
|
|
# - The `nixvimLib` arg is `lib` extended with our overlay
|
|
# (based on the host configuration's `lib`)
|
|
#
|
|
# NOTE: It is important that we use the flake-locked Nixpkgs lib,
|
|
# so that we can safely use recently added lib features.
|
|
# TODO: Consider deprecating `_module.args.nixvimLib`?
|
|
lib.nixvim = lib.mkDefault nixvimLib;
|
|
_module.args.nixvimLib = lib.mkDefault (lib.extend libOverlay);
|
|
}
|
|
|
|
# Propagate nixvim's assertions to the host modules
|
|
(lib.mkIf cfg.enable { inherit (cfg) warnings assertions; })
|
|
|
|
# Propagate extraFiles to the host modules
|
|
(optionalAttrs (filesOpt != null) (
|
|
mkIf (cfg.enable && !cfg.wrapRc) (
|
|
setAttrByPath filesOpt (
|
|
builtins.listToAttrs (
|
|
map (
|
|
{ target, finalSource, ... }:
|
|
{
|
|
name = filesPrefix + target;
|
|
value = {
|
|
source = finalSource;
|
|
};
|
|
}
|
|
) extraFiles
|
|
)
|
|
// {
|
|
${filesPrefix + initName}.source = cfg.build.initFile;
|
|
}
|
|
)
|
|
)
|
|
))
|
|
];
|
|
}
|