mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 01:43:56 -05:00
9 lines
207 B
Nix
9 lines
207 B
Nix
|
{ pkgs, lib, config, ... }: {
|
||
|
|
||
|
options = { guiApps.zoom.enable = lib.mkEnableOption "Enables Zoom."; };
|
||
|
|
||
|
config = lib.mkIf config.guiApps.zoom.enable {
|
||
|
home.packages = with pkgs; [ webcord ];
|
||
|
};
|
||
|
}
|