replace swayidle with hypridle

This commit is contained in:
Adithya 2024-05-12 19:06:03 +05:30
parent c82061e752
commit be6bf03132
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 9 additions and 1 deletions

View file

@ -5,8 +5,8 @@
./auth-agent.nix
./dunst.nix
./hyprlock.nix
./hypridle.nix
./kanshi.nix
./swayidle.nix
./swww.nix
./wallpaper.nix
];

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
services.hypridle = {
enable = true;
settings = {
lock_cmd = "${pkgs.hyprlock}/bin/hyprlock";
};
};
}