commit 8e1363d57e2aad3238d47b656e460709df4f93b1
parent fd9e6c80d7ac0976fb0dfd202318fe3559875ce4
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Tue, 19 Aug 2025 12:17:04 +0200
parent fd9e6c80d7ac0976fb0dfd202318fe3559875ce4
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Tue, 19 Aug 2025 12:17:04 +0200
config/home-manager/zaphyra/programs/thunderbird: update service `PATH`
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/config/home-manager/zaphyra/programs/thunderbird.nix b/config/home-manager/zaphyra/programs/thunderbird.nix @@ -19,7 +19,12 @@ Unit.PartOf = [ "graphical-session.target" ]; Service = { - Environment = "PATH=/run/wrappers/bin:/home/${config.home.username}/.nix-profile/bin:/etc/profiles/per-user/${config.home.username}/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin"; + Environment = "PATH=" + (lib.makeBinPath [ + "/run/wrappers" + "/home/${config.home.username}/.nix-profile" + "/nix/var/nix/profiles/default" + "/run/current-system/sw" + ]); ExecStart = lib.getExe pkgs.thunderbird; Restart = "always"; RestartSec = 5;