2023-04-03 19:39:13 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
wayland.windowManager.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
package = lib.makeOverridable
|
|
|
|
(attrs: config.lib.test.mkStubPackage { name = "hyprland"; }) { };
|
|
|
|
plugins =
|
|
|
|
[ "/path/to/plugin1" (config.lib.test.mkStubPackage { name = "foo"; }) ];
|
|
|
|
};
|
|
|
|
|
|
|
|
test.asserts.warnings.expected = [
|
2023-09-21 16:54:35 +02:00
|
|
|
"You have enabled hyprland.systemd.enable or listed plugins in hyprland.plugins but do not have any configuration in hyprland.settings or hyprland.extraConfig. This is almost certainly a mistake."
|
2023-04-03 19:39:13 +02:00
|
|
|
];
|
|
|
|
test.asserts.warnings.enable = true;
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
config=home-files/.config/hypr/hyprland.conf
|
|
|
|
assertFileExists "$config"
|
|
|
|
'';
|
|
|
|
}
|