mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 21:19:45 +01:00
parent
ffc3a473e6
commit
10fd27c291
1 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ in {
|
||||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
Environment = "PATH=${config.home.profileDirectory}/bin";
|
Environment = [ "PATH=${config.home.profileDirectory}/bin" ];
|
||||||
ExecStart =
|
ExecStart =
|
||||||
if strings.versionAtLeast (versions.majorMinor cfg.package.version)
|
if strings.versionAtLeast (versions.majorMinor cfg.package.version)
|
||||||
"24.05" then
|
"24.05" then
|
||||||
|
@ -81,7 +81,7 @@ in {
|
||||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
Environment = "PATH=${config.home.profileDirectory}/bin";
|
Environment = [ "PATH=${config.home.profileDirectory}/bin" ];
|
||||||
ExecStart = "${cfg.package}/bin/kdeconnect-indicator";
|
ExecStart = "${cfg.package}/bin/kdeconnect-indicator";
|
||||||
Restart = "on-abort";
|
Restart = "on-abort";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue