depot/third_party/home-manager/tests/modules/services/window-managers/sway/sway-followmouse.nix
Default email 72904c318c Project import generated by Copybara.
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
2020-10-11 17:22:58 -07:00

37 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}
'';
};
}