fix(nix): fix formatting

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-05-01 11:17:11 +02:00
parent 0838418eb2
commit 1b8366f9b1

View file

@ -83,12 +83,13 @@
rust-overlay = rust-overlay.packages.${system}; rust-overlay = rust-overlay.packages.${system};
}; };
mkContainerFor = refraction: pkgs.dockerTools.buildLayeredImage { mkContainerFor = refraction:
name = "refraction"; pkgs.dockerTools.buildLayeredImage {
tag = "latest-${refraction.stdenv.hostPlatform.qemuArch}"; name = "refraction";
config.Cmd = [(lib.getExe refraction)]; tag = "latest-${refraction.stdenv.hostPlatform.qemuArch}";
inherit (refraction) architecture; config.Cmd = [(lib.getExe refraction)];
}; inherit (refraction) architecture;
};
in { in {
refraction = pkgs.callPackage ./nix/derivation.nix {inherit self;}; refraction = pkgs.callPackage ./nix/derivation.nix {inherit self;};