diff options
author | Ben Sima <ben@bsima.me> | 2020-04-19 14:10:51 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-19 14:10:51 -0700 |
commit | 7cb550d9e30f7fbb4a04c544df800327ea2e49ec (patch) | |
tree | 95cb26e825ba2c6d5ca7d23afd73354546b0f8bc | |
parent | 4b3e7340e1cf573abaf64febaa87db1c0d824149 (diff) |
Fix machine hostnames
Bash prompts don't show anything beyond the first '.', so this makes
them readable
-rw-r--r-- | default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/default.nix b/default.nix index 0463bc0..2d7fb8f 100644 --- a/default.nix +++ b/default.nix @@ -67,11 +67,11 @@ in rec { ./Que/Website.nix ./Que/Prod.nix ]; - networking.hostName = "prod.que.run"; + networking.hostName = "prod-que"; networking.domain = "que.run"; }; }; - # Production server for musicmeetscomics.com + # Production server for herocomics.app Hero.Prod = buildOS { deps = { herocomics-server = Hero.Server; @@ -84,7 +84,7 @@ in rec { ./Hero/Service.nix ./Hero/Prod.nix ]; - networking.hostName = "prod.herocomics.app"; + networking.hostName = "prod-herocomics"; networking.domain = "herocomcis.app"; }; }; |