aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--secrets/state.nixopsbin40982 -> 0 bytes
-rw-r--r--servers/vps/vps.logical.nix25
-rw-r--r--servers/vps/vps.virtualbox.nix8
3 files changed, 0 insertions, 33 deletions
diff --git a/secrets/state.nixops b/secrets/state.nixops
deleted file mode 100644
index d97b27c..0000000
--- a/secrets/state.nixops
+++ /dev/null
Binary files differ
diff --git a/servers/vps/vps.logical.nix b/servers/vps/vps.logical.nix
deleted file mode 100644
index 9905cee..0000000
--- a/servers/vps/vps.logical.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- network.description = "Personal VPS";
-
- webserver = { config, pkgs, ... }:
- let
- nixcloud = import (builtins.fetchTarball
- "https://github.com/nixcloud/nixcloud-webservices/archive/master.tar.gz");
- in {
- imports = [ nixcloud ];
- nixcloud.reverse-proxy = {
- enable = true;
- extendEtcHosts = true; # test without it
- };
-
- nixcloud.webservices.mediawiki.test1 = {
- enable = true;
-
- proxyOptions = {
- port = 40000;
- path = "/wiki";
- domain = "example.com";
- };
- };
- };
-}
diff --git a/servers/vps/vps.virtualbox.nix b/servers/vps/vps.virtualbox.nix
deleted file mode 100644
index 592862d..0000000
--- a/servers/vps/vps.virtualbox.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- webserver = { config, pkgs, ... }: {
- deployment.targetEnv = "virtualbox";
- deployment.virtualbox.memorySize = 1024; # megabytes
- deployment.virtualbox.vcpu = 2; # number of cpus
- deployment.virtualbox.headless = true;
- };
-}