summaryrefslogtreecommitdiff
path: root/deploy.nix
diff options
context:
space:
mode:
Diffstat (limited to 'deploy.nix')
-rw-r--r--deploy.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/deploy.nix b/deploy.nix
deleted file mode 100644
index d3a23d9..0000000
--- a/deploy.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-# Nix config for the main biz machine.
-
-{ pkgs
-, config
-, ...,
-}:
-
-{
- imports = [ ./ibb/module.nix ];
- nixpkgs.config.packageOverrides = pkgs: {
- ibb = import ./ibb/default.nix {};
- };
- services = {
-
- ibb.enable = true;
-
- nginx = {
- enable = true;
- recommendedGzipSettings = true;
- recommendedOptimisation = true;
- recommendedProxySettings = true;
- recommendedTlsSettings = true;
- virtualHosts = {
- "ibb.buildmindful.com" = {
- forceSSL = true;
- enableACME = true;
- locations = {
- "/" = {
- proxyPass = "http://localhost:3000";
- };
- };
- };
- };
- };
- };
-}