diff --git a/nixos-apps/fancyTypist.dev b/nixos-apps/fancyTypist.dev index 1cd499e..91ceede 160000 --- a/nixos-apps/fancyTypist.dev +++ b/nixos-apps/fancyTypist.dev @@ -1 +1 @@ -Subproject commit 1cd499efa18470f4f1a9caa4033265c93bb5942b +Subproject commit 91ceedebe9db1c46f333f99805f502363810dd08 diff --git a/nixos-apps/fancytypist.com.nix b/nixos-apps/fancytypist.com.nix index b6e73bd..4e507e5 100644 --- a/nixos-apps/fancytypist.com.nix +++ b/nixos-apps/fancytypist.com.nix @@ -1,3 +1,5 @@ +{ pkgs, ... }: + let PROJECT_ROOT = "/workspace/deployed-nixos-server-and-apps/nixos-apps/fancytypist.dev"; PORT = "12513"; @@ -31,13 +33,13 @@ in }; systemd.services = { - fancyTypist.dev-site = { + fancyTypistDotDev-site = { enable = true; description = "The Haskell Servant executable server that hosts my FancyTypist.dev site."; path = with pkgs; [ nix git ]; script = '' cd ${PROJECT_ROOT} - nix run .#fancyTypist.dev-site + nix run .#fancyTypistDotDev-site ''; }; };