nixfmt changes

This commit is contained in:
Gerg-L 2023-12-03 21:59:58 -05:00
parent 36176f647c
commit f25c8638ee
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI
36 changed files with 133 additions and 135 deletions

View file

@ -51,20 +51,20 @@ rec {
gerg-utils =
config: outputs:
lib.foldAttrs lib.mergeAttrs { } (
lib.foldAttrs lib.mergeAttrs {} (
map
(
system:
let
pkgs =
if config == { } then
if config == {} then
unstable.legacyPackages.${system}
else
import unstable { inherit system config; };
import unstable {inherit system config;};
in
lib.mapAttrs (name: value: if needsSystem name then { ${system} = value pkgs; } else value) outputs
lib.mapAttrs (name: value: if needsSystem name then {${system} = value pkgs;} else value) outputs
)
[ "x86_64-linux" ]
["x86_64-linux"]
);
mkHosts =