nix-configurations/hosts/lkk-nix-1/services/invidious.nix

10 lines
165 B
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }:
2023-02-07 08:29:30 +00:00
{
services.invidious = {
enable = true;
package = pkgs.unstable.invidious;
2023-02-07 08:29:30 +00:00
port = 3006;
domain = "video.lanakk.com";
};
}