hypridle: add test

Adding the tests for the hypridle service module.
This commit is contained in:
Austin Horstman 2024-04-22 21:02:42 -05:00
parent c096f64206
commit 2ebe41b47e
No known key found for this signature in database
4 changed files with 54 additions and 0 deletions

View File

@ -239,6 +239,7 @@ in import nmtSrc {
./modules/services/gpg-agent
./modules/services/gromit-mpx
./modules/services/home-manager-auto-upgrade
./modules/services/hypridle
./modules/services/imapnotify
./modules/services/kanshi
./modules/services/lieer

View File

@ -0,0 +1,36 @@
{ pkgs, ... }: {
services.hypridle = {
enable = true;
package = pkgs.hypridle;
settings = {
general = {
after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false;
lock_cmd = "hyprlock";
};
listener = [
{
timeout = 900;
on-timeout = "hyprlock";
}
{
timeout = 1200;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
];
};
};
test.stubs.hypridle = { };
nmt.script = ''
config=home-files/.config/hypr/hypridle.conf
clientServiceFile=home-files/.config/systemd/user/hypridle.service
assertFileExists $config
assertFileExists $clientServiceFile
assertFileContent $config ${./hypridle.conf}
'';
}

View File

@ -0,0 +1 @@
{ hypridle-basic-configuration = ./basic-configuration.nix; }

View File

@ -0,0 +1,16 @@
general {
after_sleep_cmd=hyprctl dispatch dpms on
ignore_dbus_inhibit=false
lock_cmd=hyprlock
}
listener {
on-timeout=hyprlock
timeout=900
}
listener {
on-resume=hyprctl dispatch dpms on
on-timeout=hyprctl dispatch dpms off
timeout=1200
}