about summary refs log tree commit diff
path: root/infra/nixos/glesys.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2019-09-02T18·04+0100
committerGitHub <noreply@github.com>2019-09-02T18·04+0100
commit2f239426aa4b9783c301a0ecbb4a9a4fd8b8e6dd (patch)
tree6656efbc41e5dd9c90759b7773538ac064666d54 /infra/nixos/glesys.nix
parent4bd6d528008c6a8a7357a2c40013931800582252 (diff)
parente2feae3387e5d95715bdd27cd62753a18abf16bd (diff)
Merge pull request #2 from tazjin/refactor/nixos-nginx-cleanup r/73
Remove old NixOS config and move oslo.pub
Diffstat (limited to 'infra/nixos/glesys.nix')
-rw-r--r--infra/nixos/glesys.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/infra/nixos/glesys.nix b/infra/nixos/glesys.nix
deleted file mode 100644
index 4cd66cb19595..000000000000
--- a/infra/nixos/glesys.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
-  sto-tazserve-1 = { pkgs, config, ... }: {
-    deployment.targetHost = "46.21.106.241";
-
-    # Configure network
-    networking.hostName = "sto-tazserve-1";
-    networking.interfaces.ens32.ip4 = [
-      { address = "46.21.106.241"; prefixLength = 23; }
-    ];
-    networking.defaultGateway = "46.21.106.1";
-    networking.nameservers = [ "195.20.206.80" "195.20.206.81" ];
-
-    imports = [
-      ./configuration.nix
-      ./tazserve.nix
-    ];
-  };
-}