Add hopescaramels website
Change-Id: I8b574c6e55b6ca5a5168b990b57285a1d2ebf2a2
Reviewed-on: https://git.clicks.codes/c/Clicks/NixFiles/+/193
Reviewed-by: Samuel Shuert <coded@clicks.codes>
Tested-by: Skyler Grey <minion@clicks.codes>
diff --git a/services/websites/default.nix b/services/websites/default.nix
index 5985b84..63dc0fd 100644
--- a/services/websites/default.nix
+++ b/services/websites/default.nix
@@ -7,4 +7,13 @@
Service.WorkingDirectory = "${config.home.homeDirectory}/clicks.codes";
Service.Environment = "PATH=${pkgs.git}/bin";
};
+
+ systemd.user.services."signup.hopescaramels.com" = {
+ Unit.Description = "Run hopescaramels signup page";
+ Install.WantedBy = [ "default.target" ];
+
+ Service.ExecStart = "${pkgs.nix}/bin/nix develop --command pnpm start";
+ Service.WorkingDirectory = "${config.home.homeDirectory}/signup.hopescaramels.com";
+ Service.Environment = "PATH=${pkgs.git}/bin";
+ };
}