depot/third_party/home-manager/tests/modules/services/window-managers/sway/sway-followmouse-legacy.nix
Default email 4d19ca4703 Project import generated by Copybara.
GitOrigin-RevId: a7117efb3725e6197dd95424136f79147aa35e5b
2024-06-04 11:23:39 -07:00

23 lines
536 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./sway-stubs.nix ];
wayland.windowManager.sway = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
checkConfig = false;
config = {
focus.followMouse = false;
menu = "${pkgs.dmenu}/bin/dmenu_run";
bars = [ ];
};
};
nmt.script = ''
assertFileExists home-files/.config/sway/config
assertFileContent $(normalizeStorePaths home-files/.config/sway/config) \
${./sway-followmouse-legacy-expected.conf}
'';
}