1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 21:03:27 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-followmouse-legacy.nix

25 lines
504 B
Nix
Raw Normal View History

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