nixos/nitter: rename guestAccounts to sessionsFile

for consistency with upstream, see
https://github.com/zedeus/nitter/commit/6fcd849eff51ad1ee6e6078e3236896ab97803b6

uku b6ba4a49 9b5f2fec

Changed files
+16 -10
nixos
doc
manual
release-notes
modules
services
misc
tests
+2
nixos/doc/manual/release-notes/rl-2505.section.md
···
- `nodePackages.ganache` has been removed, as the package has been deprecated by upstream.
+
- `services.nitter.guestAccounts` has been renamed to `services.nitter.sessionsFile`, for consistency with upstream. The file format is unchanged.
+
- `virtualisation.azure.agent` option provided by `azure-agent.nix` is replaced by `services.waagent`, and will be removed in a future release.
- `matomo` now defaults to version 5 (previously available as `matomo_5`). Version 4 has been removed as it reached EOL on December 19, 2024.
+12 -8
nixos/modules/services/misc/nitter.nix
···
"nitter"
"replaceInstagram"
] "Nitter no longer supports this option as Bibliogram has been discontinued.")
+
(lib.mkRenamedOptionModule
+
[ "services" "nitter" "guestAccounts" ]
+
[ "services" "nitter" "sessionsFile" ]
+
)
];
options = {
···
'';
};
-
guestAccounts = lib.mkOption {
+
sessionsFile = lib.mkOption {
type = lib.types.path;
-
default = "/var/lib/nitter/guest_accounts.jsonl";
+
default = "/var/lib/nitter/sessions.jsonl";
description = ''
-
Path to the guest accounts file.
+
Path to the session tokens file.
-
This file contains a list of guest accounts that can be used to
+
This file contains a list of session tokens that can be used to
access the instance without logging in. The file is in JSONL format,
where each line is a JSON object with the following fields:
{"oauth_token":"some_token","oauth_token_secret":"some_secret_key"}
-
See <https://github.com/zedeus/nitter/wiki/Guest-Account-Branch-Deployment>
-
for more information on guest accounts and how to generate them.
+
See <https://github.com/zedeus/nitter/wiki/Creating-session-tokens>
+
for more information on session tokens and how to generate them.
'';
};
···
after = [ "network-online.target" ];
serviceConfig = {
DynamicUser = true;
-
LoadCredential = "guestAccountsFile:${cfg.guestAccounts}";
+
LoadCredential = "sessionsFile:${cfg.sessionsFile}";
StateDirectory = "nitter";
Environment = [
"NITTER_CONF_FILE=/var/lib/nitter/nitter.conf"
-
"NITTER_ACCOUNTS_FILE=%d/guestAccountsFile"
+
"NITTER_SESSIONS_FILE=%d/sessionsFile"
];
# Some parts of Nitter expect `public` folder in working directory,
# see https://github.com/zedeus/nitter/issues/414
+2 -2
nixos/tests/nitter.nix
···
# These credentials are from the nitter wiki and are expired. We must provide
# credentials in the correct format, otherwise nitter fails to start. They
# must not be valid, as unauthorized errors are handled gracefully.
-
guestAccountFile = pkgs.writeText "guest_accounts.jsonl" ''
+
sessionsFile = pkgs.writeText "sessions.jsonl" ''
{"oauth_token":"1719213587296620928-BsXY2RIJEw7fjxoNwbBemgjJhueK0m","oauth_token_secret":"N0WB0xhL4ng6WTN44aZO82SUJjz7ssI3hHez2CUhTiYqy"}
'';
in
···
# Test CAP_NET_BIND_SERVICE
server.port = 80;
# Provide dummy guest accounts
-
guestAccounts = guestAccountFile;
+
inherit sessionsFile;
};
};