Jalil David Salamé Messina
e03cd65e87
All checks were successful
/ check (push) Successful in 20s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
This is much more manageable!
24 lines
554 B
Nix
24 lines
554 B
Nix
{ inputs, ... }:
|
|
let
|
|
standalone = ../nvim/standalone.nix;
|
|
in
|
|
{
|
|
flake.overlays.nixvim = inputs.nixvim.overlays.default;
|
|
|
|
perSystem =
|
|
{ pkgs, system, ... }:
|
|
{
|
|
# Check standalone nvim build
|
|
checks.nvim = inputs.nixvim.lib.${system}.check.mkTestDerivationFromNixvimModule {
|
|
inherit pkgs;
|
|
module = ../nvim/standalone.nix;
|
|
};
|
|
|
|
# Nvim standalone module
|
|
packages.nvim = inputs.nixvim.legacyPackages.${system}.makeNixvimWithModule {
|
|
inherit pkgs;
|
|
module = standalone;
|
|
};
|
|
|
|
};
|
|
}
|