1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 13:53:27 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-followmouse.nix
Cole Mickens 5c639ff68a
sway: focus.followMouse supports yes/no/always
Also add associated tests for both Sway and i3.

PR #1231
2020-07-17 15:35:00 +02:00

38 lines
919 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
wayland.windowManager.sway = {
enable = true;
config = {
focus.followMouse = "always";
menu = "${pkgs.dmenu}/bin/dmenu_run";
bars = [ ];
};
};
nixpkgs.overlays = [
(self: super: {
dmenu = super.dmenu // { outPath = "@dmenu@"; };
rxvt-unicode-unwrapped = super.rxvt-unicode-unwrapped // {
outPath = "@rxvt-unicode-unwrapped@";
};
sway-unwrapped =
pkgs.runCommandLocal "dummy-sway-unwrapped" { version = "1"; }
"mkdir $out";
swaybg = pkgs.writeScriptBin "dummy-swaybg" "";
xwayland = pkgs.writeScriptBin "xwayland" "";
})
];
nmt.script = ''
assertFileExists home-files/.config/sway/config
assertFileContent home-files/.config/sway/config \
${./sway-followmouse-expected.conf}
'';
};
}