1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/services/wayfire/configuration.nix
1444 4cc9cc67eb
wayfire: fix broken configuration.ini test (#7478)
Normalize store paths so it will pass even with flake updates and on different architectures.
2025-07-15 10:20:41 -05:00

20 lines
518 B
Nix

{ config, ... }:
{
wayland.windowManager.wayfire = {
enable = true;
package = null;
settings = {
core.plugins = "command expo cube";
command = {
binding_terminal = "alacritty";
command_terminal = "alacritty";
};
cube.skydome_texture = config.lib.test.mkStubPackage { };
};
};
nmt.script = ''
assertFileExists home-files/.config/wayfire.ini
assertFileContent "$(normalizeStorePaths home-files/.config/wayfire.ini)" "${./configuration.ini}"
'';
}