{ config, lib, pkgs, inputs, ... }: { options.my.apps.internet.enable = lib.mkEnableOption "enable"; config = lib.mkIf config.my.apps.internet.enable { programs = { geary.enable = true; firefox = { enable = true; package = pkgs.librewolf; # fuck u firefox languagePacks = [ "en-CA" "es-MX" "it" ]; }; }; users.users.jawz.packages = let vdhcoapp = pkgs.callPackage ../../pkgs/vdhcoapp/default.nix { }; packages = builtins.attrValues { inherit (pkgs) evolution # gnome email client warp # transfer files with based ppl brave # crypto-browser that at least somewhat integrates with gtk nextcloud-client # self-hosted google-drive alternative fragments # beautiful torrent client tor-browser-bundle-bin # dark web, so dark! telegram-desktop # furry chat nicotine-plus # remember Ares? vencord # screen share with audio discord discord-ptb # :3 teamspeak5_client # ppl say they will use this...? # hugo # website engine ; }; in packages ++ [ vdhcoapp # video download helper assistant inputs.zen-browser.packages.x86_64-linux.default ]; }; }