diff options
author | Emile <git@emile.space> | 2025-02-10 19:36:54 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2025-02-10 19:36:54 +0100 |
commit | 8b379245b37df57e62986e47360ea7f8d487a88d (patch) | |
tree | b01000ce3150a1c1547ddacfa801e9d1ff801a8f | |
parent | 830d3dd2f52cfc0fb86ab6e708a54a7b4e923e32 (diff) |
corrino: update hound config and disable it
-rw-r--r-- | nix/hosts/corrino/configuration.nix | 2 | ||||
-rw-r--r-- | nix/hosts/corrino/www/cs.emile.space.nix | 23 |
2 files changed, 12 insertions, 13 deletions
diff --git a/nix/hosts/corrino/configuration.nix b/nix/hosts/corrino/configuration.nix index eed5076..f5f6444 100644 --- a/nix/hosts/corrino/configuration.nix +++ b/nix/hosts/corrino/configuration.nix @@ -48,7 +48,7 @@ in ./www/social.emile.space.nix ./www/sso.emile.space.nix ./www/s3.emile.space.nix - ./www/cs.emile.space.nix + # ./www/cs.emile.space.nix ./www/irc.emile.space.nix # ./www/db.emile.space.nix diff --git a/nix/hosts/corrino/www/cs.emile.space.nix b/nix/hosts/corrino/www/cs.emile.space.nix index d07d9b2..e182f9c 100644 --- a/nix/hosts/corrino/www/cs.emile.space.nix +++ b/nix/hosts/corrino/www/cs.emile.space.nix @@ -44,18 +44,17 @@ in services.hound = { enable = true; - config = '' - { - "dbpath": "/var/lib/hound/data", - "max-concurrent-indexers" : 6, - "vcs-config" : { - "git" : { - "detect-ref" : true - } - }, - "repos" : ${repos} - } - ''; + settings = { + title = "cs.emile.space"; + dbpath = "/var/lib/hound/data"; + max-concurrent-indexers = 6; + vcs-config = { + git = { + detect-ref = true; + }; + }; + repos = repos; + }; listen = "127.0.0.1:${toString config.emile.ports.hound}"; }; |