fix: use signal-desktop flake with up to date binaries

This commit is contained in:
Youwen Wu 2025-02-18 18:33:55 -08:00
parent 43280510cb
commit 07b163349b
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
3 changed files with 36 additions and 0 deletions

View file

@ -88,6 +88,16 @@
};
};
nixpkgs.overlays = [
(final: prev: {
signal-desktop =
if pkgs.stdenv.targetPlatform.isAarch then
inputs.signal-desktop.packages.${pkgs.system}.default.override { electronPageSizeFix = true; }
else
pkgs.signal-desktop;
})
];
nix.extraOptions = ''
!include ${config.age.secrets.nix_config_github_pat.path}
'';