home-manager/tests/modules/services/window-managers/wayfire/configuration.nix
1444 456e599f91
wayfire: add module (#6066)
Adds a Module for the Wayfire Compositor. Also allows managing the wf-shell configuration.
2025-01-08 16:18:57 +01:00

22 lines
508 B
Nix

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