From 1a70c803cbebc4d4c5d506e6fb03dffd86e284f2 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sun, 28 Jul 2024 23:32:05 +0200 Subject: [PATCH] Format --- nixos/tests/docker-tools-nix-shell.nix | 17 +++++++++++------ nixos/tests/docker-tools.nix | 2 +- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/nixos/tests/docker-tools-nix-shell.nix b/nixos/tests/docker-tools-nix-shell.nix index 2472cd80a9f0..c2ae2124e0a1 100644 --- a/nixos/tests/docker-tools-nix-shell.nix +++ b/nixos/tests/docker-tools-nix-shell.nix @@ -6,16 +6,21 @@ in { name = "docker-tools-nix-shell"; meta = with lib.maintainers; { - maintainers = [ infinisil roberth ]; + maintainers = [ + infinisil + roberth + ]; }; nodes = { - docker = { ... }: { - virtualisation = { - diskSize = 3072; - docker.enable = true; + docker = + { ... }: + { + virtualisation = { + diskSize = 3072; + docker.enable = true; + }; }; - }; }; testScript = '' diff --git a/nixos/tests/docker-tools.nix b/nixos/tests/docker-tools.nix index eabd65da60e9..41bd4a621545 100644 --- a/nixos/tests/docker-tools.nix +++ b/nixos/tests/docker-tools.nix @@ -60,7 +60,7 @@ let }; nonRootTestImage = - pkgs.dockerTools.streamLayeredImage rec { + pkgs.dockerTools.streamLayeredImage { name = "non-root-test"; tag = "latest"; uid = 1000;