nix: home-manager module fix service wantedby

This commit is contained in:
Joshua Manchester 2024-02-18 23:56:14 +00:00 committed by Mihai Fufezan
parent 56f334cbe8
commit f4659b1bb8
1 changed files with 2 additions and 1 deletions

View File

@ -105,7 +105,6 @@ in {
Unit = { Unit = {
Description = "Hypridle"; Description = "Hypridle";
After = ["graphical-session.target"]; After = ["graphical-session.target"];
WantedBy = ["default.target"];
}; };
Service = { Service = {
@ -113,6 +112,8 @@ in {
Restart = "always"; Restart = "always";
RestartSec = "10"; RestartSec = "10";
}; };
Install.WantedBy = [ "default.target" ];
}; };
}; };
} }