dotfiles/home-manager/modules/graphical-programs.nix
main ae2b112e6e
Remove webcord, chromium and firefox
Signed-off-by: main <magic_rb@redalder.org>
2022-11-06 00:07:48 +01:00

39 lines
750 B
Nix

# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
#
# 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
(discord-canary.override { withOpenASAR = true; })
pavucontrol
];
};
}