1
Fork 0

Update redlib to use unstable package

This commit is contained in:
prescientmoon 2024-04-22 23:00:05 +02:00
parent a7a9567222
commit 7bca0369b8
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: {
{ config, upkgs, ... }: {
imports = [ ../../common/optional/services/nginx.nix ];
services.nginx.virtualHosts."redlib.moonythm.dev" =
@ -7,6 +7,7 @@
services.libreddit = {
enable = true;
port = 8416;
package = pkgs.redlib;
# REASON: not in stable yet
package = upkgs.redlib;
};
}