dotfiles/nix/home-manager/modules/graphical-programs.nix
Magic_RB d3e46e5413
Complete module rework
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:24:36 +02:00

25 lines
493 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.magic_rb.packageCollections.graphical;
inherit (config.magic_rb.pkgs) nixpkgs-master;
in
{
options.magic_rb.packageCollections.graphical = {
enable = mkEnableOption
''
Enable graphical package collection, contains GIMP, Firefox, mpv, and Discord.
'';
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
gimp
firefox
mpv
] ++ [
nixpkgs-master.discord
];
};
}