zaphyra's git: nixfiles

zaphyra's nixfiles

commit b7cc58c61cadc871441020c3a492efda546cfb49
parent 98cea584418390c0f6def161fe341f34ff4e0be4
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Wed, 30 Jul 2025 18:38:25 +0200

config/home/programs/thunderbird: use `lib.getExe`
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/home/zaphyra/programs/thunderbird.nix b/config/home/zaphyra/programs/thunderbird.nix
@@ -20,7 +20,7 @@
 
     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";
-      ExecStart = "${pkgs.thunderbird}/bin/thunderbird";
+      ExecStart = lib.getExe pkgs.thunderbird;
       Restart = "always";
       RestartSec = 5;
     };