mirror of
https://github.com/nix-community/home-manager
synced 2024-11-16 08:09:45 +01:00
polybar: change restart trigger to contain a string
The systemd unit type is a bit more strict now and needs an explicit string in this position.
This commit is contained in:
parent
3db46fa9bf
commit
30a16e3a87
1 changed files with 3 additions and 1 deletions
|
@ -118,7 +118,9 @@ in
|
||||||
Description = "Polybar status bar";
|
Description = "Polybar status bar";
|
||||||
After = [ "graphical-session-pre.target" ];
|
After = [ "graphical-session-pre.target" ];
|
||||||
PartOf = [ "graphical-session.target" ];
|
PartOf = [ "graphical-session.target" ];
|
||||||
X-Restart-Triggers = [ config.xdg.configFile."polybar/config".source ];
|
X-Restart-Triggers = [
|
||||||
|
"${config.xdg.configFile."polybar/config".source}"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
|
|
Loading…
Reference in a new issue