We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18765d0 commit 7bb552fCopy full SHA for 7bb552f
nixos/modules/services/torrent/magnetico.nix
@@ -15,7 +15,7 @@ let
15
credentialsFile
16
else
17
pkgs.writeText "magnetico-credentials" (
18
- concatStrings (mapAttrsToList (user: hash: "${user}:${hash}\n") cfg.web.credentials)
+ lib.concatStrings (lib.mapAttrsToList (user: hash: "${user}:${hash}\n") cfg.web.credentials)
19
);
20
21
# default options in magneticod/main.go
@@ -28,7 +28,7 @@ let
28
29
crawlerArgs =
30
with cfg.crawler;
31
- escapeShellArgs (
+ lib.escapeShellArgs (
32
[
33
"--database=${dbURI}"
34
"--indexer-addr=${address}:${toString port}"
@@ -40,7 +40,7 @@ let
40
41
webArgs =
42
with cfg.web;
43
44
45
46
(
0 commit comments