1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00

Clean up systemd units for all graphical services

This commit is contained in:
Robert Helgesson 2017-06-26 18:34:09 +02:00
parent acf8d4e985
commit 9c17c5ccbb
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86
10 changed files with 20 additions and 3 deletions

View file

@ -28,6 +28,7 @@ in
systemd.user.services.gnome-keyring = {
Unit = {
Description = "GNOME Keyring";
PartOf = [ "graphical-session-pre.target" ];
};
Service = {
@ -45,7 +46,7 @@ in
};
Install = {
WantedBy = [ "graphical-session.target" ];
WantedBy = [ "graphical-session-pre.target" ];
};
};
};