diff options
Diffstat (limited to 'Biz/Dev/Configuration.nix')
-rw-r--r-- | Biz/Dev/Configuration.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix index 24293cf..13be1be 100644 --- a/Biz/Dev/Configuration.nix +++ b/Biz/Dev/Configuration.nix @@ -8,6 +8,7 @@ let jellyfin = 8096; httpdev = { from = 8000; to = 8099; }; devallocHost = 8095; + hoogle = 8008; }; in { networking = { @@ -109,6 +110,15 @@ in { }; services = { + my-hoogle = { + enable = true; + port = ports.hoogle; + home = "//hoogle.simatime.com"; + packages = import ../Bild/Deps/Haskell.nix; + haskellPackages = pkgs.haskell.packages.ghc865; + host = "0.0.0.0"; + }; + pcscd.enable = true; logind = { lidSwitch = "ignore"; @@ -223,7 +233,6 @@ in { nixos.enable = true; }; - nix = { autoOptimiseStore = true; buildCores = 0; # use all available cores |