chore: use lib.getExe wherever possible

This commit is contained in:
Youwen Wu 2025-06-01 22:14:57 -07:00
parent 63d4a1b452
commit 2f48a2c279
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
6 changed files with 23 additions and 24 deletions

View file

@ -88,6 +88,6 @@ in
pkgs.zen-browser
];
home.sessionVariables.DEFAULT_BROWSER = lib.mkIf cfg.zen.enable "${pkgs.zen-browser}/bin/zen";
home.sessionVariables.DEFAULT_BROWSER = lib.mkIf cfg.zen.enable "${lib.getExe pkgs.zen-browser}";
};
}