mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-08 01:51:04 +01:00
hypridle: add module
This commit is contained in:
parent
f69bf670d2
commit
fdaaf543ba
7 changed files with 163 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
38
tests/modules/services/hypridle/basic-configuration.nix
Normal file
38
tests/modules/services/hypridle/basic-configuration.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{ 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}
|
||||
'';
|
||||
}
|
||||
1
tests/modules/services/hypridle/default.nix
Normal file
1
tests/modules/services/hypridle/default.nix
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ hypridle-basic-configuration = ./basic-configuration.nix; }
|
||||
16
tests/modules/services/hypridle/hypridle.conf
Normal file
16
tests/modules/services/hypridle/hypridle.conf
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue