Merge pull request #272963 from Luflosi/nixos/tests/ft2-clone-cleanup

nixos/tests/ft2-clone: cleanup
This commit is contained in:
Lassulus 2023-12-28 16:18:43 +01:00 committed by GitHub
commit 07c7d9361a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")
'';
})