Compare commits
1 commit
af1b8ccfa4
...
d816faa25b
Author | SHA1 | Date | |
---|---|---|---|
d816faa25b |
2 changed files with 11 additions and 13 deletions
|
@ -1,24 +1,22 @@
|
||||||
{ inputs, ... }:
|
{ inputs, ... }:
|
||||||
let
|
|
||||||
standalone = ../nvim/standalone.nix;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
flake.overlays.nixvim = inputs.nixvim.overlays.default;
|
flake.overlays.nixvim = inputs.nixvim.overlays.default;
|
||||||
|
|
||||||
perSystem =
|
perSystem =
|
||||||
{ pkgs, system, ... }:
|
{ pkgs, system, ... }:
|
||||||
{
|
let
|
||||||
# Check standalone nvim build
|
nixvimLib = inputs.nixvim.lib.${system};
|
||||||
checks.nvim = inputs.nixvim.lib.${system}.check.mkTestDerivationFromNixvimModule {
|
nixvim = inputs.nixvim.legacyPackages.${system};
|
||||||
|
module = {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
module = ../nvim/standalone.nix;
|
module = ../nvim/standalone.nix;
|
||||||
};
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
# Check standalone nvim build
|
||||||
|
checks.nvim = nixvimLib.check.mkTestDerivationFromNixvimModule module;
|
||||||
|
|
||||||
# Nvim standalone module
|
# Nvim standalone module
|
||||||
packages.nvim = inputs.nixvim.legacyPackages.${system}.makeNixvimWithModule {
|
packages.nvim = nixvim.makeNixvimWithModule module;
|
||||||
inherit pkgs;
|
|
||||||
module = standalone;
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (helpers) mkRaw;
|
inherit (helpers) mkRaw enableExceptInTests;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config.plugins = {
|
config.plugins = {
|
||||||
|
@ -160,7 +160,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
gitsigns.enable = true;
|
gitsigns.enable = true;
|
||||||
image.enable = true;
|
image.enable = enableExceptInTests;
|
||||||
jupytext = {
|
jupytext = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.custom_language_formatting.python = {
|
settings.custom_language_formatting.python = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue