mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
hypridle: add module
This commit is contained in:
parent
f69bf670d2
commit
fdaaf543ba
7 changed files with 163 additions and 0 deletions
|
@ -1584,6 +1584,17 @@ in {
|
||||||
https://conky.cc/ for more.
|
https://conky.cc/ for more.
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
time = "2024-05-05T07:22:01+00:00";
|
||||||
|
condition = hostPlatform.isLinux;
|
||||||
|
message = ''
|
||||||
|
A new module is available: 'services.hypridle'.
|
||||||
|
|
||||||
|
Hypridle is a program that monitors user activity and runs commands
|
||||||
|
when idle or active. See https://github.com/hyprwm/hypridle for more.
|
||||||
|
'';
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -302,6 +302,7 @@ let
|
||||||
./services/gromit-mpx.nix
|
./services/gromit-mpx.nix
|
||||||
./services/home-manager-auto-upgrade.nix
|
./services/home-manager-auto-upgrade.nix
|
||||||
./services/hound.nix
|
./services/hound.nix
|
||||||
|
./services/hypridle.nix
|
||||||
./services/imapnotify.nix
|
./services/imapnotify.nix
|
||||||
./services/kanshi.nix
|
./services/kanshi.nix
|
||||||
./services/kbfs.nix
|
./services/kbfs.nix
|
||||||
|
|
95
modules/services/hypridle.nix
Normal file
95
modules/services/hypridle.nix
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
|
||||||
|
cfg = config.services.hypridle;
|
||||||
|
in {
|
||||||
|
meta.maintainers = [ maintainers.khaneliman maintainers.fufexan ];
|
||||||
|
|
||||||
|
options.services.hypridle = {
|
||||||
|
enable = mkEnableOption "Hypridle, Hyprland's idle daemon";
|
||||||
|
|
||||||
|
package = mkPackageOption pkgs "hypridle" { };
|
||||||
|
|
||||||
|
settings = lib.mkOption {
|
||||||
|
type = with lib.types;
|
||||||
|
let
|
||||||
|
valueType = nullOr (oneOf [
|
||||||
|
bool
|
||||||
|
int
|
||||||
|
float
|
||||||
|
str
|
||||||
|
path
|
||||||
|
(attrsOf valueType)
|
||||||
|
(listOf valueType)
|
||||||
|
]) // {
|
||||||
|
description = "Hypridle configuration value";
|
||||||
|
};
|
||||||
|
in valueType;
|
||||||
|
default = { };
|
||||||
|
description = ''
|
||||||
|
Hypridle configuration written in Nix. Entries with the same key
|
||||||
|
should be written as lists. Variables' and colors' names should be
|
||||||
|
quoted. See <https://wiki.hyprland.org/Hypr-Ecosystem/hypridle/> for more examples.
|
||||||
|
'';
|
||||||
|
example = lib.literalExpression ''
|
||||||
|
{
|
||||||
|
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";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
importantPrefixes = lib.mkOption {
|
||||||
|
type = with lib.types; listOf str;
|
||||||
|
default = [ "$" ];
|
||||||
|
example = [ "$" ];
|
||||||
|
description = ''
|
||||||
|
List of prefix of attributes to source at the top of the config.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
xdg.configFile."hypr/hypridle.conf" = mkIf (cfg.settings != { }) {
|
||||||
|
text = lib.hm.generators.toHyprconf {
|
||||||
|
attrs = cfg.settings;
|
||||||
|
inherit (cfg) importantPrefixes;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.user.services.hypridle = {
|
||||||
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||||
|
|
||||||
|
Unit = {
|
||||||
|
ConditionEnvironment = "WAYLAND_DISPLAY";
|
||||||
|
Description = "hypridle";
|
||||||
|
After = [ "graphical-session-pre.target" ];
|
||||||
|
PartOf = [ "graphical-session.target" ];
|
||||||
|
X-Restart-Triggers =
|
||||||
|
[ "${config.xdg.configFile."hypr/hypridle.conf".source}" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
Service = {
|
||||||
|
ExecStart = "${getExe cfg.package}";
|
||||||
|
Restart = "always";
|
||||||
|
RestartSec = "10";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -239,6 +239,7 @@ in import nmtSrc {
|
||||||
./modules/services/gpg-agent
|
./modules/services/gpg-agent
|
||||||
./modules/services/gromit-mpx
|
./modules/services/gromit-mpx
|
||||||
./modules/services/home-manager-auto-upgrade
|
./modules/services/home-manager-auto-upgrade
|
||||||
|
./modules/services/hypridle
|
||||||
./modules/services/imapnotify
|
./modules/services/imapnotify
|
||||||
./modules/services/kanshi
|
./modules/services/kanshi
|
||||||
./modules/services/lieer
|
./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…
Reference in a new issue