From c4cf8445669782d32fde1e6cd1cd0d51b2f81fb0 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Fri, 8 Dec 2023 18:27:39 +0100 Subject: [PATCH] nixos/tests/ft2-clone: cleanup - Remove unused `config` argument - Don't enable the xserver again, since the import `./common/x11.nix` already takes care of that - Remove an empty line at the end --- nixos/tests/ft2-clone.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nixos/tests/ft2-clone.nix b/nixos/tests/ft2-clone.nix index a8395d4ebaa6..5476b38c00bd 100644 --- a/nixos/tests/ft2-clone.nix +++ b/nixos/tests/ft2-clone.nix @@ -4,12 +4,11 @@ import ./make-test-python.nix ({ pkgs, ... }: { maintainers = [ fgaz ]; }; - nodes.machine = { config, pkgs, ... }: { + nodes.machine = { pkgs, ... }: { imports = [ ./common/x11.nix ]; - services.xserver.enable = true; sound.enable = true; environment.systemPackages = [ pkgs.ft2-clone ]; }; @@ -30,4 +29,3 @@ import ./make-test-python.nix ({ pkgs, ... }: { machine.screenshot("screen") ''; }) -