Jalil David Salamé Messina
84387f2597
All checks were successful
/ check (push) Successful in 28s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 1s
This caught a bug where we don't disable `conform` keymaps when `dev.enable = false` (which disables `conform`).
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ inputs, lib, ... }:
|
|
{
|
|
flake.overlays.nixvim = inputs.nixvim.overlays.default;
|
|
|
|
perSystem =
|
|
{ pkgs, system, ... }:
|
|
let
|
|
nixvimLib = inputs.nixvim.lib.${system};
|
|
nixvim = inputs.nixvim.legacyPackages.${system};
|
|
moduleDev = {
|
|
inherit pkgs;
|
|
extraSpecialArgs = {
|
|
inherit (inputs) unstable;
|
|
inherit system;
|
|
};
|
|
module = import ../nvim/standalone.nix { standalone = true; };
|
|
};
|
|
moduleHeadless = {
|
|
inherit pkgs;
|
|
extraSpecialArgs = {
|
|
inherit (inputs) unstable;
|
|
inherit system;
|
|
};
|
|
module = {
|
|
imports = [ (import ../nvim/standalone.nix { standalone = true; }) ];
|
|
config.jhome.nvim.dev.enable = false;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
# Check standalone nvim build
|
|
checks.nvimDev = nixvimLib.check.mkTestDerivationFromNixvimModule moduleDev;
|
|
checks.nvimHeadless = nixvimLib.check.mkTestDerivationFromNixvimModule moduleHeadless;
|
|
|
|
# Nvim standalone module
|
|
packages.nvim = nixvim.makeNixvimWithModule moduleDev;
|
|
};
|
|
}
|