libconfig for hypridle
This commit is contained in:
parent
e43f0c8ba7
commit
6e91950e14
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
pkgs,
|
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
networking.hostName = "laptop";
|
networking.hostName = "laptop";
|
||||||
|
@ -8,6 +7,8 @@
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
services.xserver.desktopManager.gnome.enable = true;
|
services.xserver.desktopManager.gnome.enable = true;
|
||||||
|
|
||||||
|
hypridle.enable = true;
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../../modules
|
../../modules
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
|
|
|
@ -1,19 +1,26 @@
|
||||||
{...}: {
|
{lib,config,...}: {
|
||||||
home-manager.users.joy.services.hypridle = {
|
options = {
|
||||||
enable = true;
|
hypridle.enable = lib.mkEnableOption "Enables kitty";
|
||||||
settings = {
|
};
|
||||||
listener = [
|
|
||||||
{
|
config = lib.mkIf config.hypridle.enable {
|
||||||
timeout = 300;
|
home-manager.users.joy.services.hypridle = {
|
||||||
on-timeout = "hyprctl dispatch dpms off";
|
enable = true;
|
||||||
on-resume = "hyprctl dispatch dpms on";
|
settings = {
|
||||||
}
|
listener = [
|
||||||
{
|
{
|
||||||
timeout = 600;
|
timeout = 300;
|
||||||
on-timeout = "systemctl suspend";
|
on-timeout = "hyprctl dispatch dpms off";
|
||||||
on-resume = "hyprctl dispatch dpms on";
|
on-resume = "hyprctl dispatch dpms on";
|
||||||
}
|
}
|
||||||
];
|
{
|
||||||
|
timeout = 600;
|
||||||
|
on-timeout = "systemctl suspend";
|
||||||
|
on-resume = "hyprctl dispatch dpms on";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue