diff options
author | Ben Sima <ben@bsima.me> | 2020-12-06 15:12:48 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-12-06 15:12:48 -0500 |
commit | 2642499df1795c8024992b3cfd8891c8fc576ed8 (patch) | |
tree | 84af13edcad80baf2207187c00ca92535474de37 /Biz/Dev.nix | |
parent | 183d16c1793c14769881536dcd0bb5f9a9f760ce (diff) |
De-nest Devalloc and a few other cleanups
Diffstat (limited to 'Biz/Dev.nix')
-rw-r--r-- | Biz/Dev.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Biz/Dev.nix b/Biz/Dev.nix index d9f2cb6..14c0375 100644 --- a/Biz/Dev.nix +++ b/Biz/Dev.nix @@ -9,14 +9,14 @@ bild.os { ./Users.nix ./Dev/Configuration.nix ./Dev/Hardware.nix - ./Devalloc/Host.nix + ./Devalloc.nix ]; networking.hostName = "lithium"; networking.domain = "dev.simatime.com"; - services.devalloc-host = { + services.devalloc = { enable = true; port = 8095; - package = bild.ghc ./Devalloc/Host.hs; + package = bild.ghc ./Devalloc.hs; }; } |