diff options
Diffstat (limited to 'nix-personal/profiles/landing')
-rw-r--r-- | nix-personal/profiles/landing/default.nix | 7 | ||||
-rw-r--r-- | nix-personal/profiles/landing/html/index.html | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/nix-personal/profiles/landing/default.nix b/nix-personal/profiles/landing/default.nix new file mode 100644 index 0000000..83fc770 --- /dev/null +++ b/nix-personal/profiles/landing/default.nix @@ -0,0 +1,7 @@ +{...}: { + imports = [../nginx.nix]; + services.nginx.virtualHosts."girlth.ing" = { + default = true; + root = ./.; + }; +} diff --git a/nix-personal/profiles/landing/html/index.html b/nix-personal/profiles/landing/html/index.html new file mode 100644 index 0000000..5d5f6be --- /dev/null +++ b/nix-personal/profiles/landing/html/index.html @@ -0,0 +1,5 @@ +<html> + <body> + <h1>It works!</h1> + </body> +</html> |