fix syntax

This commit is contained in:
NyxErinys 2026-05-17 23:37:15 -05:00
parent 1af45acd62
commit 2feb303c1d
3 changed files with 5 additions and 5 deletions

View file

@ -1,8 +1,8 @@
{ cfg, lib, inputs, ... }: { cfg, lib, inputs, ... }:
let let
manifests = [ manifests = [
"./ubuntu.nix" ./ubuntu.nix
]; ];
imported = map ( n: import ${n} { inherit cfg lib inputs; } ) manifests; imported = map ( n: import n { inherit cfg lib inputs; } ) manifests;
in in
lib.foldl' lib.recursiveUpdate {} imported lib.foldl' lib.recursiveUpdate {} imported

View file

@ -1,9 +1,9 @@
{ cfg, lib, ... }: { cfg, lib, inputs, ... }:
let let
manifests = [ manifests = [
./deployments ./deployments
./services ./services
]; ];
imported = map ( n: import ${n} { inherit cfg lib } ) manifests; imported = map ( n: import n { inherit cfg lib inputs } ) manifests;
in in
lib.foldl' lib.recursiveUpdate {} imported lib.foldl' lib.recursiveUpdate {} imported

View file

@ -3,6 +3,6 @@ let
manifests = [ manifests = [
"" ""
]; ];
imported = map ( n: import ${n} { inherit cfg lib inputs; } ) manifests; imported = map ( n: import n { inherit cfg lib inputs; } ) manifests;
in in
lib.foldl' lib.recursiveUpdate {} imported lib.foldl' lib.recursiveUpdate {} imported