summaryrefslogtreecommitdiff
path: root/home/gaming.nix
blob: 8d389e572e3175a6279afb89f2b91208402539ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  lib,
  config,
  pkgs,
  ...
}: let
  inherit (lib) optionals;
  cfg = config.gaming;
in {
  home.packages = with pkgs;
    (optionals cfg.homestuck.enable [
      unofficial-homestuck-collection
    ])
    ++ (optionals cfg.minecraft.enable [
      prismlauncher
    ]);
}