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";
# Flake reused directly from https://github.com/Ahwxorg/nixvim-config/
@ -9,9 +9,10 @@
};
outputs =
{ nixvim
, flake-parts
, ...
{
nixvim,
flake-parts,
...
}@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
@ -22,9 +23,10 @@
];
perSystem =
{ pkgs
, system
, ...
{
pkgs,
system,
...
}:
let
nixvimLib = nixvim.lib.${system};