mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
67 lines
2.4 KiB
Nix
67 lines
2.4 KiB
Nix
import ./make-test-python.nix (
|
|
{ pkgs, lib, ... }:
|
|
{
|
|
name = "mate-wayland";
|
|
|
|
meta.maintainers = lib.teams.mate.members;
|
|
|
|
nodes.machine =
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./common/user-account.nix
|
|
];
|
|
|
|
services.xserver.enable = true;
|
|
services.displayManager = {
|
|
sddm.enable = true; # https://github.com/canonical/lightdm/issues/63
|
|
sddm.wayland.enable = true;
|
|
defaultSession = "MATE";
|
|
autoLogin = {
|
|
enable = true;
|
|
user = "alice";
|
|
};
|
|
};
|
|
services.xserver.desktopManager.mate.enableWaylandSession = true;
|
|
|
|
# Need to switch to a different GPU driver than the default one (-vga std) so that wayfire can launch:
|
|
virtualisation.qemu.options = [ "-vga none -device virtio-gpu-pci" ];
|
|
};
|
|
|
|
enableOCR = true;
|
|
|
|
testScript =
|
|
{ nodes, ... }:
|
|
let
|
|
user = nodes.machine.users.users.alice;
|
|
in
|
|
''
|
|
machine.wait_for_unit("display-manager.service")
|
|
|
|
with subtest("Wait for Wayland server"):
|
|
machine.wait_for_file("/run/user/${toString user.uid}/wayland-1")
|
|
|
|
with subtest("Check if MATE session components actually start"):
|
|
for i in ["wayfire", "mate-panel", "mate-wayland.sh", "mate-wayland-components.sh"]:
|
|
machine.wait_until_succeeds(f"pgrep -f {i}")
|
|
# It is expected that this applet doesn't work in Wayland
|
|
machine.wait_for_text('WorkspaceSwitcherApplet')
|
|
|
|
with subtest("Check if various environment variables are set"):
|
|
cmd = "xargs --null --max-args=1 echo < /proc/$(pgrep -xf mate-panel)/environ"
|
|
machine.succeed(f"{cmd} | grep 'XDG_SESSION_TYPE' | grep 'wayland'")
|
|
machine.succeed(f"{cmd} | grep 'XDG_SESSION_DESKTOP' | grep 'MATE'")
|
|
machine.succeed(f"{cmd} | grep 'MATE_PANEL_APPLETS_DIR' | grep '${pkgs.mate.mate-panel-with-applets.pname}'")
|
|
|
|
with subtest("Check if Wayfire config is properly configured"):
|
|
for i in ["button_style = mate", "firedecor", "mate-wayland-components.sh"]:
|
|
machine.wait_until_succeeds(f"cat /home/${user.name}/.config/mate/wayfire.ini | grep '{i}'")
|
|
|
|
with subtest("Check if Wayfire has ever coredumped"):
|
|
machine.fail("coredumpctl --json=short | grep wayfire")
|
|
machine.sleep(10)
|
|
machine.screenshot("screen")
|
|
'';
|
|
}
|
|
)
|