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