diff options
author | Vincent Ambo <tazjin@google.com> | 2019-09-02T16·15+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-09-02T16·19+0100 |
commit | 4881a84eaafc1e5ea5d5d76f14cfe8c5b233791f (patch) | |
tree | ae48379aecbd86329a338fd5f5475b44a27a1a20 /infra/nixos/glesys.nix | |
parent | 4bd6d528008c6a8a7357a2c40013931800582252 (diff) |
chore(infra): Remove NixOS configuration for servers
This configuration is no longer in use. The Gemma configuration file has been moved over to the k8s folder from where it will be templated into the actual configuration.
Diffstat (limited to 'infra/nixos/glesys.nix')
-rw-r--r-- | infra/nixos/glesys.nix | 18 |
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 - ]; - }; -} |