flake/simple-nixos-mailserver: change input from master to fixed version

This commit is contained in:
2026-05-23 08:23:46 +02:00
parent cbc56857c2
commit bf12adcdf3
3 changed files with 38 additions and 27 deletions

14
home/common/firefox.nix Normal file
View File

@@ -0,0 +1,14 @@
{ pkgs, ... }: {
programs.firefox = {
enable = true;
package = pkgs.symlinkJoin {
name = "firefox-no-scudo";
paths = [ pkgs.firefox ];
nativeBuildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram $out/bin/firefox --unset LD_PRELOAD
'';
meta.mainProgram = "firefox";
};
};
}