summaryrefslogtreecommitdiff
path: root/home/gaming/homestuck.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/gaming/homestuck.nix')
-rw-r--r--home/gaming/homestuck.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/home/gaming/homestuck.nix b/home/gaming/homestuck.nix
new file mode 100644
index 0000000..20cc2f7
--- /dev/null
+++ b/home/gaming/homestuck.nix
@@ -0,0 +1,16 @@
+{
+ lib,
+ config,
+ inputs,
+ pkgs,
+ ...
+}: let
+ inherit (lib) mkIf;
+ cfg = config.gaming.homesuck;
+in {
+ config = mkIf cfg.enable {
+ home.packages = [
+ inputs.self.packages.${pkgs.system}.unofficial-homestuck-collection
+ ];
+ };
+}