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 c7f06bb commit b0be6e4Copy full SHA for b0be6e4
nixos/modules/services/audio/gonic.nix
@@ -54,13 +54,13 @@ in
54
ReadWritePaths = "";
55
BindPaths = [
56
cfg.settings.playlists-path
57
+ cfg.settings.podcast-path
58
];
59
BindReadOnlyPaths = [
60
# gonic can access scrobbling services
61
"-/etc/resolv.conf"
62
"-/etc/ssl/certs/ca-certificates.crt"
63
builtins.storeDir
- cfg.settings.podcast-path
64
] ++ cfg.settings.music-path
65
++ lib.optional (cfg.settings.tls-cert != null) cfg.settings.tls-cert
66
++ lib.optional (cfg.settings.tls-key != null) cfg.settings.tls-key;
0 commit comments