about summary refs log tree commit diff
path: root/users/wpcarro/nixos/modules/www/wpcarro.dev.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/nixos/modules/www/wpcarro.dev.nix')
-rw-r--r--users/wpcarro/nixos/modules/www/wpcarro.dev.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/users/wpcarro/nixos/modules/www/wpcarro.dev.nix b/users/wpcarro/nixos/modules/www/wpcarro.dev.nix
deleted file mode 100644
index 62c1ed308c..0000000000
--- a/users/wpcarro/nixos/modules/www/wpcarro.dev.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ pkgs, ... }:
-
-{
-  config = {
-    services.nginx.virtualHosts."wpcarro.dev" = {
-      enableACME = true;
-      forceSSL = true;
-      extraConfig = "return 302 https://billandhiscomputer.com$request_uri;";
-    };
-  };
-}