1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-20 03:50:19 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-no-xwayland.nix
Naïm Camille Favier 1de492f6f8
format: update and remove exceptions (#3029)
Switches to nixfmt 0.5.0 and removes exceptions for files without open
PRs.
2022-06-16 14:13:06 +02:00

24 lines
501 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
''
}
'';
}