diff options
author | Ben Sima <ben@bsima.me> | 2020-07-19 21:21:03 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-07-19 21:21:03 -0700 |
commit | ddc9b826bdc568004451fb14b458476e4c7e5061 (patch) | |
tree | 3f3808a2c916c8070ad38e2754f95d721b7b526d /default.nix | |
parent | 17a2f2364326d0eb527631353942fccecd7e2a7f (diff) |
hero: rename stuff to new structure
Working toward https://github.com/bsima/biz/issues/5
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/default.nix b/default.nix index 237a6da..5d2021b 100644 --- a/default.nix +++ b/default.nix @@ -73,8 +73,8 @@ in rec { services.herocomics = { enable = true; port = 3000; - deck = Hero.Server; - beam = Hero.Client; + host = Hero.Host; + node = Hero.Node; keep = "/var/lib/hero"; }; }; @@ -82,8 +82,8 @@ in rec { # Biz.Ibb.Server = build.ghc Biz/Ibb/Server.hs; Biz.Ibb.Client = build.ghcjs Biz/Ibb/Client.hs; - Hero.Server = build.ghc Hero/Server.hs; - Hero.Client = build.ghcjs Hero/Client.hs; + Hero.Host = build.ghc Hero/Host.hs; + Hero.Node = build.ghcjs Hero/Node.hs; Que.Server = build.ghc ./Que/Server.hs; Que.Website = build.ghc ./Que/Website.hs; # Development environment |