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-workspace-output.nix
Basti 95da56b783
i3,sway: workspace output assignment (#2003)
(cherry picked from commit ea3ff797c87313e71f2ed2fd2b932a18a4b4400b)
2021-06-02 18:03:20 -06:00

54 lines
1.1 KiB
Nix

{ config, lib, pkgs, ... }:
with lib;
let
dummy-package = pkgs.runCommandLocal "dummy-package" { } "mkdir $out";
in {
config = let
i3 = {
ws1 = "1";
ws2 = "ABC";
ws3 = "3: Test";
ws4 = ''!"§$%&/(){}[]=?\*#<>-_.:,;²³'';
};
in {
wayland.windowManager.sway = {
enable = true;
package = dummy-package // { outPath = "@sway"; };
# overriding findutils causes issues
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
config.workspaceOutputAssign = [
{
workspace = "${i3.ws1}";
output = "eDP";
}
{
workspace = "${i3.ws2}";
output = "DP";
}
{
workspace = "${i3.ws3}";
output = "HDMI";
}
{
workspace = "${i3.ws4}";
output = "DVI";
}
];
};
nixpkgs.overlays = [ (import ./sway-overlay.nix) ];
nmt.script = ''
assertFileExists home-files/.config/sway/config
assertFileContent home-files/.config/sway/config \
${./sway-workspace-output-expected.conf}
'';
};
}