UWSM Hyprland

This commit is contained in:
Hadi
2025-04-18 14:09:24 +02:00
parent 4cb131cd97
commit 5bfd891d39
7 changed files with 27 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
# Hypridle is a daemon that listens for user activity and runs commands when the user is idle.
{ pkgs, ... }: {
{ pkgs, lib, ... }: {
services.hypridle = {
enable = true;
settings = {
@@ -24,4 +24,6 @@
];
};
};
systemd.user.services.hypridle.Unit.After =
lib.mkForce "graphical-session.target";
}