From 1b8366f9b1fabf469a3bd6718f49f27047594094 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Wed, 1 May 2024 11:17:11 +0200 Subject: [PATCH] fix(nix): fix formatting Signed-off-by: Sefa Eyeoglu --- flake.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 18f5cda..e8c3db8 100644 --- a/flake.nix +++ b/flake.nix @@ -83,12 +83,13 @@ rust-overlay = rust-overlay.packages.${system}; }; - mkContainerFor = refraction: pkgs.dockerTools.buildLayeredImage { - name = "refraction"; - tag = "latest-${refraction.stdenv.hostPlatform.qemuArch}"; - config.Cmd = [(lib.getExe refraction)]; - inherit (refraction) architecture; - }; + mkContainerFor = refraction: + pkgs.dockerTools.buildLayeredImage { + name = "refraction"; + tag = "latest-${refraction.stdenv.hostPlatform.qemuArch}"; + config.Cmd = [(lib.getExe refraction)]; + inherit (refraction) architecture; + }; in { refraction = pkgs.callPackage ./nix/derivation.nix {inherit self;};