summaryrefslogtreecommitdiff
path: root/programs/unofficial-homestuck-collection
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-17 21:57:53 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-17 21:57:53 -0400
commite0f2eb724245e02cb247b644f0947261d8665318 (patch)
tree13f929df40059d37165cbe46be95a6404a1bbecb /programs/unofficial-homestuck-collection
parentrefactor styles to new color scheme basis (diff)
downloaddotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.tar.gz
dotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.tar.bz2
dotfiles-nix-e0f2eb724245e02cb247b644f0947261d8665318.zip
remove nix dir and move out all sub modules
Diffstat (limited to 'programs/unofficial-homestuck-collection')
-rw-r--r--programs/unofficial-homestuck-collection/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/programs/unofficial-homestuck-collection/default.nix b/programs/unofficial-homestuck-collection/default.nix
new file mode 100644
index 0000000..19b792b
--- /dev/null
+++ b/programs/unofficial-homestuck-collection/default.nix
@@ -0,0 +1,12 @@
+{ config, pkgs, inputs, ... }:
+
+let
+ system = pkgs.stdenv.hostPlatform.system;
+ unofficial-homestuck-collection = inputs.unofficial-homestuck-collection.packages.${system};
+in {
+ home-manager.users.${config.user} = {
+ home.packages = [
+ unofficial-homestuck-collection.unofficial-homestuck-collection
+ ];
+ };
+}