nixos/gonic: moving podcast-path from RO to RW (#382049)

This commit is contained in:
Arne Keller
2025-02-20 12:16:20 +01:00
committed by GitHub
+1 -1
View File
@@ -54,13 +54,13 @@ in
ReadWritePaths = "";
BindPaths = [
cfg.settings.playlists-path
cfg.settings.podcast-path
];
BindReadOnlyPaths = [
# gonic can access scrobbling services
"-/etc/resolv.conf"
"-/etc/ssl/certs/ca-certificates.crt"
builtins.storeDir
cfg.settings.podcast-path
] ++ cfg.settings.music-path
++ lib.optional (cfg.settings.tls-cert != null) cfg.settings.tls-cert
++ lib.optional (cfg.settings.tls-key != null) cfg.settings.tls-key;