Skip to content

Commit

Permalink
nix: home-manager module fix service wantedby
Browse files Browse the repository at this point in the history
  • Loading branch information
JManch authored and fufexan committed Feb 19, 2024
1 parent 56f334c commit f4659b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nix/hm-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,15 @@ in {
Unit = {
Description = "Hypridle";
After = ["graphical-session.target"];
WantedBy = ["default.target"];
};

Service = {
ExecStart = "${getExe cfg.package}";
Restart = "always";
RestartSec = "10";
};

Install.WantedBy = [ "default.target" ];
};
};
}

0 comments on commit f4659b1

Please sign in to comment.