diff options
author | Ben Sima <ben@bsima.me> | 2020-03-30 07:28:42 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-03-30 09:01:07 -0700 |
commit | 8a95a5838b992f51611d89971cf6ad8cabe68970 (patch) | |
tree | 406e0df2dda6e6a40cdbc0d7612346c10fa44814 /default.nix | |
parent | 0eca0c477b15e0412497ca21847bd969e5e73fc2 (diff) |
Rename Com.Simatime.Que to Run.Que
Now that I have the domain name que.run! Aw yeah.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/default.nix b/default.nix index f249d53..f60a2a1 100644 --- a/default.nix +++ b/default.nix @@ -59,21 +59,6 @@ in { boot.enableContainers = true; }; }; - Que = buildGhc { - name = "Com.Simatime.Que"; - nick = "que"; - deps = [ - "aeson" - "async" - "protolude" - "scotty" - "servant" - "servant-server" - "stm" - "unagi-chan" - "unordered-containers" - ]; - }; }; Com.InfluencedByBooks = buildOS { configuration = { @@ -175,7 +160,21 @@ in { ]; }; }; - + Run.Que = buildGhc { + name = "Run.Que"; + nick = "que-server"; + deps = [ + "aeson" + "async" + "protolude" + "scotty" + "servant" + "servant-server" + "stm" + "unagi-chan" + "unordered-containers" + ]; + }; # fallthrough to nixpkgs nixpkgs = nixpkgs; } |