1
0
Fork 0

Formatting

This commit is contained in:
Malte Brandy 2020-10-13 00:17:59 +02:00
parent 99ad74c19d
commit e3369d03e3
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -23,13 +23,9 @@ let
threadDelay 600000000
'';
in {
systemd.user = {
services.sleep-nag = {
Unit = { Description = "Sleep nag"; };
Service = { ExecStart = "${sleep-nag}/bin/sleep-nag"; };
Install = { WantedBy = [ "graphical-session.target" ]; };
};
systemd.user.services.sleep-nag = {
Unit.Description = "Sleep nag";
Service.ExecStart = "${sleep-nag}/bin/sleep-nag";
Install.WantedBy = [ "graphical-session.target" ];
};
}