2024-04-21 15:19:48 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
lib.mkIf config.test.enableBig {
|
|
|
|
wayland.windowManager.sway = {
|
|
|
|
enable = true;
|
|
|
|
checkConfig = true;
|
|
|
|
preCheckConfig = ''
|
|
|
|
export HOME=$(mktemp -d)
|
2024-04-21 15:20:30 +02:00
|
|
|
sed 's/mybg/otherbg/g' -i sway.conf
|
|
|
|
touch ~/otherbg.png
|
2024-04-21 15:19:48 +02:00
|
|
|
'';
|
|
|
|
config.output."*".background = "~/mybg.png fill";
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/sway/config
|
2024-04-21 15:20:30 +02:00
|
|
|
assertFileRegex home-files/.config/sway/config 'mybg\.png'
|
|
|
|
assertFileNotRegex home-files/.config/sway/config 'otherbg\.png'
|
2024-04-21 15:19:48 +02:00
|
|
|
'';
|
|
|
|
}
|