UWSM Hyprland

Former-commit-id: 5bfd891d39
This commit is contained in:
Hadi
2025-04-18 14:09:24 +02:00
parent 6d4a886acb
commit 24d77739b9
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";
}