fix: add back { to flake.nix

This commit is contained in:
Barna Máté 2025-01-16 19:47:30 +01:00
parent aaab1ea5bd
commit 27a02f12eb

View file

@ -1,4 +1,4 @@
{
description = "neo2005 flake"; description = "neo2005 flake";
# Flake reused directly from https://github.com/Ahwxorg/nixvim-config/ # Flake reused directly from https://github.com/Ahwxorg/nixvim-config/
@ -9,9 +9,10 @@
}; };
outputs = outputs =
{ nixvim {
, flake-parts nixvim,
, ... flake-parts,
...
}@inputs: }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } { flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ systems = [
@ -22,9 +23,10 @@
]; ];
perSystem = perSystem =
{ pkgs {
, system pkgs,
, ... system,
...
}: }:
let let
nixvimLib = nixvim.lib.${system}; nixvimLib = nixvim.lib.${system};