summaryrefslogtreecommitdiff
path: root/programs/unofficial-homestuck-collection
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-17 22:08:20 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-17 22:08:20 -0400
commit640476ab01c501bbaa5b7854b561201bfe40d2ea (patch)
tree1516ebdda1180a910c4a7ff2e870058a936297e1 /programs/unofficial-homestuck-collection
parentadd formatter (diff)
downloaddotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.tar.gz
dotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.tar.bz2
dotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.zip
fmt
Diffstat (limited to 'programs/unofficial-homestuck-collection')
-rw-r--r--programs/unofficial-homestuck-collection/default.nix23
1 files changed, 13 insertions, 10 deletions
diff --git a/programs/unofficial-homestuck-collection/default.nix b/programs/unofficial-homestuck-collection/default.nix
index 19b792b..7b66917 100644
--- a/programs/unofficial-homestuck-collection/default.nix
+++ b/programs/unofficial-homestuck-collection/default.nix
@@ -1,12 +1,15 @@
-{ config, pkgs, inputs, ... }:
-
-let
- system = pkgs.stdenv.hostPlatform.system;
- unofficial-homestuck-collection = inputs.unofficial-homestuck-collection.packages.${system};
+{
+ 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
- ];
- };
+ home-manager.users.${config.user} = {
+ home.packages = [
+ unofficial-homestuck-collection.unofficial-homestuck-collection
+ ];
+ };
}