fix: add back { to flake.nix
This commit is contained in:
parent
aaab1ea5bd
commit
27a02f12eb
16
flake.nix
16
flake.nix
|
@ -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};
|
||||||
|
|
Loading…
Reference in a new issue