taffybar: fix indentation

(cherry picked from commit 4d870f665b)
This commit is contained in:
Robert Helgesson 2018-09-21 00:51:23 +02:00
parent e11f110b4b
commit b19478d820
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -27,19 +27,19 @@ in
config = mkIf config.services.taffybar.enable { config = mkIf config.services.taffybar.enable {
systemd.user.services.taffybar = { systemd.user.services.taffybar = {
Unit = { Unit = {
Description = "Taffybar desktop bar"; Description = "Taffybar desktop bar";
After = [ "graphical-session-pre.target" ]; After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ]; PartOf = [ "graphical-session.target" ];
}; };
Service = { Service = {
ExecStart = "${cfg.package}/bin/taffybar"; ExecStart = "${cfg.package}/bin/taffybar";
}; };
Install = { Install = {
WantedBy = [ "graphical-session.target" ]; WantedBy = [ "graphical-session.target" ];
}; };
}; };
}; };
} }