summaryrefslogtreecommitdiff
path: root/home/gaming/homestuck.nix
blob: f7a1d6535a9f48396e4fe8937c33ec4b52275e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  lib,
  config,
  inputs,
  pkgs,
  ...
}: let
  inherit (lib) mkIf;
  cfg = config.gaming.homestuck;
in {
  config = mkIf cfg.enable {
    home.packages = [
      inputs.self.packages.${pkgs.system}.unofficial-homestuck-collection
    ];
  };
}