diff options
author | Freya Murphy <freya@freyacat.org> | 2025-03-22 01:21:59 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-03-22 01:21:59 -0400 |
commit | b16fbc393817a55a0d39f08ffbf94181cdbf88ae (patch) | |
tree | 2f3cd519b236009e3de5e19c40600cbaa1441857 /nix/programs/unofficial-homestuck-collection/default.nix | |
parent | update commits (diff) | |
download | dotfiles-nix-b16fbc393817a55a0d39f08ffbf94181cdbf88ae.tar.gz dotfiles-nix-b16fbc393817a55a0d39f08ffbf94181cdbf88ae.tar.bz2 dotfiles-nix-b16fbc393817a55a0d39f08ffbf94181cdbf88ae.zip |
unofficial-homestuck-collection
Diffstat (limited to 'nix/programs/unofficial-homestuck-collection/default.nix')
-rw-r--r-- | nix/programs/unofficial-homestuck-collection/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nix/programs/unofficial-homestuck-collection/default.nix b/nix/programs/unofficial-homestuck-collection/default.nix new file mode 100644 index 0000000..19b792b --- /dev/null +++ b/nix/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 + ]; + }; +} |