mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
README: change pta2002 to nix-community
This commit is contained in:
parent
22306af9aa
commit
0778266e44
2 changed files with 21 additions and 18 deletions
|
@ -2,27 +2,30 @@
|
|||
description = "A nixvim configuration";
|
||||
|
||||
inputs = {
|
||||
nixvim.url = "github:pta2002/nixvim";
|
||||
nixvim.url = "github:nix-community/nixvim";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
nixpkgs,
|
||||
nixvim,
|
||||
flake-utils,
|
||||
...
|
||||
} @ inputs: let
|
||||
config = import ./config; # import the module directly
|
||||
in
|
||||
flake-utils.lib.eachDefaultSystem (system: let
|
||||
outputs =
|
||||
{ nixpkgs
|
||||
, nixvim
|
||||
, flake-utils
|
||||
, ...
|
||||
} @ inputs:
|
||||
let
|
||||
config = import ./config; # import the module directly
|
||||
in
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
nixvimLib = nixvim.lib.${system};
|
||||
pkgs = import nixpkgs {inherit system;};
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
nixvim' = nixvim.legacyPackages.${system};
|
||||
nvim = nixvim'.makeNixvimWithModule {
|
||||
inherit pkgs;
|
||||
module = config;
|
||||
};
|
||||
in {
|
||||
in
|
||||
{
|
||||
checks = {
|
||||
# Run `nix flake check .` to verify that your config is not broken
|
||||
default = nixvimLib.check.mkTestDerivationFromNvim {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue