feat: add zoom

This commit is contained in:
Michael Mandl 2025-03-06 19:50:55 +01:00
parent 95edaae633
commit 24acf9c23d
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7

View file

@ -1,4 +1,4 @@
{ pkgs, user, ... }:
{ pkgs, user, lib, ... }:
{
home.username = user;
@ -25,6 +25,11 @@
evince
inkscape
chromium
zoom-us
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"zoom"
];
programs.home-manager.enable = true;