# SPDX-FileCopyrightText: 2022 Richard Brežák # # SPDX-License-Identifier: LGPL-3.0-or-later { config, lib, pkgs, ... }: with lib; let cfg = config.magic_rb.packageCollections.graphical; in { options.magic_rb.packageCollections.graphical = { enable = mkEnableOption '' Enable graphical package collection, contains GIMP, Firefox, mpv, and Discord. ''; }; config = mkIf cfg.enable { programs.librewolf = { enable = true; settings = { "webgl.disabled" = false; }; }; home.packages = with pkgs; [ gimp mpv slack schildichat-desktop armcord pavucontrol ]; }; }