diff options
author | sefidel <contact@sefidel.net> | 2024-03-10 19:44:13 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-03-10 19:44:13 +0900 |
commit | 4ec26fd36c7541874405afa534bc163ca42570c6 (patch) | |
tree | ff8d0a2a350142bad04d103d90ed3d878349797b /modules/services/nitter/default.nix | |
parent | 7a6ad3e6668989db5ceba31f08528dfce821cca6 (diff) | |
download | nixrc-4ec26fd36c7541874405afa534bc163ca42570c6.tar.gz nixrc-4ec26fd36c7541874405afa534bc163ca42570c6.zip |
chore(modules/nitter): remove patch
Patch is now available upstream on c6edec04901d0a37799499ed4c6921db640fb5a4
Diffstat (limited to 'modules/services/nitter/default.nix')
-rw-r--r-- | modules/services/nitter/default.nix | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/modules/services/nitter/default.nix b/modules/services/nitter/default.nix deleted file mode 100644 index 40e8be8..0000000 --- a/modules/services/nitter/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ config, lib, pkgs, ... }: - -with lib; -let - cfg = config.modules.services.nitter; -in -{ - options.modules.services.nitter = { - enable = mkEnableOption "nitter instance"; - - title = mkOption { type = types.str; default = "Nitter"; description = "Title of the nitter instance"; }; - - domain = mkOption { type = types.str; }; - realHost = mkOption { type = types.str; default = "nitter.${cfg.domain}"; }; - secrets = { - nitter-guest-accounts = mkOption { type = types.path; description = "path to the JSONL file containing guest accounts"; }; - }; - }; - - config = mkIf cfg.enable { - services.nitter = { - enable = true; - - package = pkgs.nitter.overrideAttrs { - patches = [ - ./0001-HACK-allow-non-guest-account.patch - ]; - }; - - server = { - title = cfg.title; - address = "127.0.0.1"; - port = 4002; - hostname = cfg.realHost; - }; - guestAccounts = cfg.secrets.nitter-guest-accounts; - }; - }; -} |