1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-01 06:31:04 +01:00
home-manager/tests/modules/services/window-managers/sway/sway-workspace-output.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

54 lines
1.1 KiB
Nix

{ config, pkgs, ... }:
let
i3 = {
ws1 = "1";
ws2 = "ABC";
ws3 = "3: Test";
ws4 = ''!"§$%&/(){}[]=?\*#<>-_.:,;²³'';
ws5 = "Multiple";
};
in
{
wayland.windowManager.sway = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
checkConfig = false;
# 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";
}
{
workspace = "${i3.ws5}";
output = [
"DVI"
"HDMI"
"DP"
];
}
];
};
nmt.script = ''
assertFileExists home-files/.config/sway/config
assertFileContent $(normalizeStorePaths home-files/.config/sway/config) \
${./sway-workspace-output-expected.conf}
'';
}