Override zoom version
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m52s
Periodic flake update / flake-update (push) Successful in 1m29s

This commit is contained in:
Torjus Håkestad 2024-11-08 13:42:19 +01:00
parent 860377b06f
commit d4a1148120
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
2 changed files with 19 additions and 1 deletions

View File

@ -3,6 +3,9 @@ let
withCuda = if (osConfig.system.name == "gunter") then true else false; withCuda = if (osConfig.system.name == "gunter") then true else false;
in in
{ {
imports = [
./zoom.nix
];
home.packages = with pkgs; [ home.packages = with pkgs; [
# CLI utils # CLI utils
act act
@ -63,7 +66,6 @@ in
virt-manager virt-manager
vmware-horizon-client vmware-horizon-client
yt-dlp yt-dlp
zoom-us
# k8s tools # k8s tools
cilium-cli cilium-cli

16
home/packages/zoom.nix Normal file
View File

@ -0,0 +1,16 @@
{ pkgs, lib, ... }:
let
version = "6.2.6.2503";
zoom-override = pkgs.zoom-us.overrideAttrs (old: {
inherit version;
src = pkgs.fetchurl {
url = "https://zoom.us/client/${version}/zoom_x86_64.pkg.tar.xz";
hash = "sha256-qhymegXkXSl9fK/5klSi5uRPwFVN88QH/5EVGaBUbfc=";
};
});
in
{
home.packages = [
(lib.warn "Using overridden zoom version" zoom-override)
];
}