1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-no-xwayland.nix
2021-12-15 18:57:12 -07:00

24 lines
511 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./sway-stubs.nix ];
wayland.windowManager.sway = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
config = null;
systemdIntegration = false;
xwayland = false;
};
nmt.script = ''
assertFileExists home-files/.config/sway/config
assertFileContent home-files/.config/sway/config \
${
pkgs.writeText "expected" ''
xwayland disable
''
}
'';
}