Compare commits
3 commits
97fa750d59
...
fe71c546c4
Author | SHA1 | Date | |
---|---|---|---|
fe71c546c4 | |||
c0ea237330 | |||
5c993d6f67 |
4 changed files with 12 additions and 6 deletions
|
@ -26,7 +26,7 @@ jobs:
|
||||||
- name: Build target
|
- name: Build target
|
||||||
run: |
|
run: |
|
||||||
nix --version
|
nix --version
|
||||||
nix-fast-build --max-jobs 2 --no-nom --skip-cached --no-link \
|
nix-fast-build --max-jobs 1 --no-nom --skip-cached --no-link \
|
||||||
--flake ".#packages.$(nix eval --raw --impure --expr builtins.currentSystem)"
|
--flake ".#packages.$(nix eval --raw --impure --expr builtins.currentSystem)"
|
||||||
build-vm:
|
build-vm:
|
||||||
runs-on: nixos
|
runs-on: nixos
|
||||||
|
|
11
flake.lock
generated
11
flake.lock
generated
|
@ -339,14 +339,17 @@
|
||||||
"flake-parts"
|
"flake-parts"
|
||||||
],
|
],
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"nuschtosSearch": []
|
"nuschtosSearch": [],
|
||||||
|
"systems": [
|
||||||
|
"systems"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1746965641,
|
"lastModified": 1747083534,
|
||||||
"narHash": "sha256-6+Cn5aMDSWvsk4nOXmea3whAI4v+PjYaEpcDkTEAlXc=",
|
"narHash": "sha256-r88FEbKX1HLTovPFt1QHxzZDV7D4TGHhYlJcHmK7hYk=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "nixvim",
|
"repo": "nixvim",
|
||||||
"rev": "02a85bd29333ce9fbde0d2c57a2378f47205bb21",
|
"rev": "ff0ccdf572ad6700a2a29a82cc5d17db29708988",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
url = "github:nix-community/nixvim";
|
url = "github:nix-community/nixvim";
|
||||||
inputs = {
|
inputs = {
|
||||||
flake-parts.follows = "flake-parts";
|
flake-parts.follows = "flake-parts";
|
||||||
|
systems.follows = "systems";
|
||||||
# disable optional inputs
|
# disable optional inputs
|
||||||
nuschtosSearch.follows = "";
|
nuschtosSearch.follows = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,10 +2,11 @@
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
helpers,
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
|
helpers = if lib.hasAttrByPath [ "lib" "nixvim" ] config then config.lib.nixvim else lib.nixvim;
|
||||||
|
|
||||||
inherit (helpers) enableExceptInTests;
|
inherit (helpers) enableExceptInTests;
|
||||||
inherit (lib.trivial) const;
|
inherit (lib.trivial) const;
|
||||||
cfg = config.jhome.nvim;
|
cfg = config.jhome.nvim;
|
||||||
|
@ -174,6 +175,7 @@ in
|
||||||
mode = "virtualtext";
|
mode = "virtualtext";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
hunk.enable = true;
|
||||||
otter.enable = true;
|
otter.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue